
:root {
  --Font-color: #333333;
  --primary-font: 'lato', sans-serif;
  --secondary-font: 'serlio', serif;

}
@font-face {
  font-family: 'lato';
  src: url('assets/fonts/Lato-Light.woff') format('woff');
  font-weight: 300;
}

@font-face {
  font-family: 'serlio';
  src: url('assets/fonts/SerlioLH.woff') format('woff');
  font-weight: 400;
}
* {
  box-sizing: border-box;
  padding: 0px;
  margin: 0px;
  font-family: var(--primary-font);
  font-size: 18px;
  color: var(--Font-color);
}
body{
  background-image: url('assets/images/html/textura.png');
  font-family: var(--primary-font);
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
header{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px auto;
  position: relative;
}
main{
  width: 100%;
}
footer{
  width: 100%;
  background-color: #fff;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 8px;
}
.icon-IG{
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0px;
  right: 40px;
}
.logos-footer{
  max-width: 150px;
  height: auto;
}
.text-footer{
  font-size: 12px;
  font-weight: 300;
}
.logo{
  max-width: 270px;
  height: auto;
}
.main-section{
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: auto;
  text-align: center;
  margin-top: 0;
  margin: auto;
}
.main-article{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 40px auto;
  gap: 20px;
  max-width: calc(100% - 80px);
}
.image_vina{
  max-height: 400px;
  width: auto;
  max-width: calc(100% - 80px);
}
.image_vina_mv{
  display: none;
}
.title_article{
  font-size: 64px;
  text-transform: uppercase;
  font-weight: 400;
  font-family: var(--secondary-font);
}
.content_article{
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 20px;
}
.button_article{
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 300;
  text-decoration: none;
  border: 1px solid #fff;
  border-radius: 30px;
  padding: 8px 30px;
}
.button_article:hover{
  background-color: #fff;
}
@media only screen and (max-width: 1024px) {
  .logo{
    max-width: 194px;
  }
  .image_vina{
    display: none;
  }
  .image_vina_mv{
    display: block;
    max-width: calc(100% - 80px);
    height: auto;
  }
  .main-article{
    max-width: calc(100% - 80px);
  }
}
@media only screen and (max-width: 768px) {
  header{
    margin: 30px auto;
  }
  .icon-IG{
    right: 30px;
  }
  .image_vina_mv{
    display: block;
    max-width: calc(100% - 40px);
    height: auto;
  }
  .title_article{
    font-size: 50px;
  }
  .content_article{
    font-size: 18px;
  }
  .button_article{
    font-size: 14px;
  }
  .logos-footer{
    max-width: 90px;
  }
  .text-footer{
    font-size: 8px;
  }
  .main-article{
    max-width: calc(100% - 40px);
  }
}
@media only screen and (max-width: 390px) {
  header{
    margin: 20px auto;
  }
  footer{
    padding: 4px;
  }
  .icon-IG{
    right: 20px;
  }
  .logo{
    max-width: 150px;
  }
  .title_article{
    font-size: 42px;
  }
  .image_vina_mv{
    max-width: calc(100% - 20px);
    height: auto;
  }
  .main-article{
    margin: 10px auto;
    gap: 10px;
    max-width: calc(100% - 20px);
  }
}