@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;1,100&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
}

body {
  font-size: 1.6rem;
  height: 100%;
  width: 100%;
}

header .navbar {
  display: flex;
  position: relative;
  justify-content: space-between;
  align-items: center;
  background-color: black;
  color: #fafaf5;
}
header .navbar .brand-title {
  margin: 20px;
}
header .navbar .brand-title a {
  text-decoration: none;
  font-size: 2rem;
  font-family: "Roboto", sans-serif;
  font-size: 3.5rem;
  font-style: italic;
  font-weight: 100;
  color: #fafaf5;
}
header .navbar .navbar-links {
  height: 100%;
  margin-right: 10px;
}
header .navbar .navbar-links ul {
  display: flex;
}
header .navbar .navbar-links ul li {
  list-style: none;
}
header .navbar .navbar-links ul li a {
  display: block;
  text-decoration: none;
  padding: 15px 15px 10px 15px;
  background-image: linear-gradient(90deg, white, white);
  background-position: left bottom;
  background-size: 0% 1px;
  background-repeat: no-repeat;
  font-family: "Roboto", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 300;
  color: #fafaf5;
  transition: all 0.5s;
}
header .navbar .navbar-links ul li a:hover {
  background-size: 100% 1px;
}
header .navbar .toggle-button {
  position: absolute;
  top: 30px;
  right: 15px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
}
header .navbar .toggle-button .bar {
  height: 3px;
  width: 100%;
  background-color: #fafaf5;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  header .navbar {
    flex-direction: column;
    align-items: flex-start;
  }
  header .navbar .navbar-links {
    display: none;
    width: 100%;
  }
  header .navbar .navbar-links ul {
    width: 100%;
    flex-direction: column;
  }
  header .navbar .navbar-links ul li {
    text-align: center;
  }
  header .navbar .navbar-links.active {
    display: flex;
  }
  header .navbar .toggle-button {
    display: flex;
  }
}

.footer-container {
  flex: 1;
  background-color: #fafaf5;
  width: 100%;
  height: 50px !important;
}
.footer-container .footer-container__block {
  display: flex;
  height: 100%;
  background-color: black;
  align-content: center;
}
.footer-container .footer-container__block .footer__block--left {
  height: 100%;
  display: flex;
  align-content: center;
  width: 50%;
  color: #fafaf5;
}
.footer-container .footer-container__block .footer__block--left div {
  height: 24px;
  margin: auto 0 auto 10px;
}
.footer-container .footer-container__block .footer__block--left div p {
  margin: 0;
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 300;
  color: #fafaf5;
}
.footer-container .footer-container__block .footer__block--left div img {
  position: relative;
  top: 3px;
  height: 16px;
  width: 16px;
}
.footer-container .footer-container__block .footer__block--right {
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: end;
}
.footer-container .footer-container__block .footer__block--right div {
  margin: auto 0;
}
.footer-container .footer-container__block .footer__block--right div img {
  margin: auto 10px auto 0;
  width: 30px;
  height: 30px;
  transition: all 0.5s;
}
.footer-container .footer-container__block .footer__block--right div img:hover {
  opacity: 75%;
}

.index-body {
  overflow-y: hidden;
}

@media screen and (min-width: 320px) and (max-width: 849px) {
  .main-index {
    height: 100vh;
    width: 100vw;
    background-color: black;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  @keyframes fade-in {
    0% {
      opacity: 0%;
    }
    100% {
      opacity: 100%;
    }
  }
  .main-index figure {
    order: 1;
    position: absolute;
    bottom: 0;
    animation: fade-in 3s;
  }
  .main-index figure img {
    width: 100%;
    max-width: 600px;
    min-width: 0px;
    height: auto;
    min-height: 150px;
  }
  .main-index .index-tittle__container {
    position: absolute;
    top: 20%;
    text-align: center;
    animation: fade-in 3s;
  }
  .main-index .index-tittle__container .main-tittle h1 {
    font-family: "Roboto", sans-serif;
    font-size: 3.5rem;
    font-style: italic;
    font-weight: 100;
    color: #fafaf5;
  }
  .main-index .index-tittle__container .main-a a {
    font-family: "Roboto", sans-serif;
    font-size: 2.6rem;
    font-style: normal;
    font-weight: 300;
    color: #fafaf5;
    text-decoration: none;
  }
}
@media screen and (min-width: 850px) {
  .main-index {
    height: 100%;
    width: 100%;
    background-color: black;
  }
  @keyframes fade-in {
    0% {
      opacity: 0%;
    }
    100% {
      opacity: 100%;
    }
  }
  .main-index figure {
    animation: fade-in 3s;
  }
  .main-index figure img {
    width: 100%;
    max-width: 600px;
    min-width: 288px;
    height: auto;
    min-height: 150px;
    position: absolute;
    bottom: 0;
    left: 10%;
  }
}
@media screen and (min-width: 850px) and (max-width: 1024px) and (min-width: 850px) {
  .main-index figure img {
    max-width: 500px;
  }
}
@media screen and (min-width: 850px) {
  .main-index .index-tittle__container {
    position: absolute;
    left: 60%;
    top: 40%;
    animation: fade-in 3s;
  }
  .main-index .index-tittle__container .main-tittle h1 {
    font-family: "Roboto", sans-serif;
    font-size: 4.5rem;
    font-style: italic;
    font-weight: 100;
    color: #fafaf5;
  }
  .main-index .index-tittle__container .main-a a {
    font-family: "Roboto", sans-serif;
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 300;
    color: #fafaf5;
    text-decoration: none;
  }
  .main-index .index-tittle__container .main-a a:hover {
    opacity: 75%;
    border-bottom: 1px solid white;
  }
}
.main-fotografia {
  width: 100%;
  padding: 30px;
  background-color: #fafaf5;
}
.main-fotografia .main-fotografia__display {
  width: 95%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.main-fotografia .main-fotografia__display article {
  text-align: center;
  margin: 15px;
}
@media screen and (min-width: 1024px) and (max-width: 1339px) {
  .main-fotografia .main-fotografia__display article {
    margin: 20px;
  }
}
.main-fotografia .main-fotografia__display article img {
  width: 100%;
  max-width: 550px;
  min-width: 288px;
  height: auto;
  min-height: 150px;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.45);
  transition: all 0.5s;
}
.main-fotografia .main-fotografia__display article img:hover {
  transform: scale(1.013);
  box-shadow: 0px 6px 8px 0px rgba(0, 0, 0, 0.15);
}
@media screen and (min-width: 1024px) and (max-width: 1339px) {
  .main-fotografia .main-fotografia__display article img {
    width: 100%;
    max-width: 400px;
    min-width: 288px;
    height: auto;
    min-height: 150px;
  }
}
.main-fotografia .main-fotografia__display article h2 {
  font-family: "Roboto", sans-serif;
  font-size: 3rem;
  font-style: italic;
  font-weight: 100;
  color: black;
  margin-top: 10px;
}

.main-album {
  width: 100%;
  overflow-x: hidden;
  position: relative;
}
.main-album .main-album__links {
  width: fit-content;
  margin: 10px auto;
}
.main-album .main-album__links a {
  font-family: "Roboto", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  color: black;
  text-decoration: none;
  margin-right: 10px;
}
.main-album .main-album__links .inactive {
  opacity: 50%;
  cursor: not-allowed;
  pointer-events: none;
}
.main-album h1 {
  margin: 30px 0px;
  width: 100%;
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-size: 2.5rem;
  font-style: italic;
  font-weight: bold;
  color: black;
}
.main-album .album__container--text {
  width: 90%;
  max-width: 500px;
  min-width: 288px;
  margin: 0 auto;
}
.main-album .album__container--text p {
  font-family: "Roboto", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 300;
  color: black;
  margin: 20px auto;
  text-align: justify;
}
.main-album .main-album__container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.main-album .main-album__container .album__container--images {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.main-album .main-album__container .album__container--images div, .main-album .main-album__container .album__container--images figure {
  display: flex;
  justify-content: center;
  width: 100%;
}
.main-album .main-album__container .album__container--images div img, .main-album .main-album__container .album__container--images figure img {
  width: 100%;
  max-width: 500px;
  min-width: 228px;
  height: auto;
  min-height: 150px;
  margin: 20px;
}
.main-album .main-album__container .album__container--images div .landscape, .main-album .main-album__container .album__container--images figure .landscape {
  width: 100%;
  max-width: 1000px;
  min-width: 228px;
  height: auto;
  min-height: 150px;
  margin: 20px;
}
.main-album .Goup {
  position: absolute;
  bottom: 5px;
  right: 50px;
}
.main-album .Goup img {
  height: 35px;
  width: 35px;
}
@media screen and (max-width: 768px) {
  .main-album .Goup {
    display: none;
  }
}

.main-biografia {
  width: 100%;
  background-color: #fafaf5;
}
.main-biografia .main-biografia__container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: 80%;
}
.main-biografia .main-biografia__container .biografia__container--image {
  width: 50%;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 1023px) {
  .main-biografia .main-biografia__container .biografia__container--image {
    order: 1;
    width: 100%;
  }
}
.main-biografia .main-biografia__container .biografia__container--image figure {
  display: flex;
  justify-content: center;
  width: 70%;
  margin-top: 30px;
  margin-bottom: 20px;
}
.main-biografia .main-biografia__container .biografia__container--image figure img {
  width: 100%;
  max-width: 350px;
  min-width: 288px;
  height: auto;
  min-height: 150px;
}
.main-biografia .main-biografia__container .biografia__container--text {
  width: 50%;
  text-align: justify;
}
@media screen and (max-width: 1023px) {
  .main-biografia .main-biografia__container .biografia__container--text {
    width: 100%;
  }
}
.main-biografia .main-biografia__container .biografia__container--text p {
  width: 90%;
  margin: 20px auto;
  font-family: "Roboto", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 300;
  color: black;
}

.fill {
  flex: 1;
  background-color: #fafaf5;
}

.main-press {
  width: 100%;
  background-color: #fafaf5;
}
.main-press .main-press__container {
  width: 90%;
  text-align: justify;
  margin: 0 auto 20px auto;
}
.main-press .main-press__container h1, .main-press .main-press__container h2, .main-press .main-press__container h3 {
  font-family: "Roboto", sans-serif;
  font-size: 2.6rem;
  font-style: normal;
  font-weight: bold;
  color: black;
  margin: 20px;
}
@media screen and (max-width: 768px) {
  .main-press .main-press__container h1, .main-press .main-press__container h2, .main-press .main-press__container h3 {
    font-size: 2rem;
  }
}
.main-press .main-press__container p {
  font-family: "Roboto", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 300;
  color: black;
  margin: 10px;
}
.main-press .main-press__container a {
  padding: 10px;
  font-family: "Roboto", sans-serif;
  font-size: 2rem;
  font-style: normal;
  font-weight: bold;
  color: black;
  text-decoration: none;
  background-image: linear-gradient(90deg, black, black);
  background-position: left bottom;
  background-size: 0% 1px;
  background-repeat: no-repeat;
  transition: all 0.5s;
}
.main-press .main-press__container a:hover {
  background-size: 100% 1px;
}

.fill {
  flex: 1;
  background-color: #fafaf5;
}

.main-contact {
  background-color: #fafaf5;
}
.main-contact .main-contact__container {
  width: 80%;
  margin: 0 auto;
}
.main-contact .main-contact__container .contact__container--tittle {
  margin: 20px 0px;
  text-align: center;
}
.main-contact .main-contact__container .contact__container--tittle p {
  font-family: "Roboto", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 300;
  color: black;
}
.main-contact .main-contact__container .contact__container--tittle h2 {
  font-family: "Roboto", sans-serif;
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 300;
  color: black;
}
.main-contact .main-contact__container .contact__container--form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 550px;
  width: 100%;
  margin: 0 auto;
}
.main-contact .main-contact__container .contact__container--form .form--input {
  display: flex;
  flex-wrap: wrap;
  max-width: 550px;
  width: 100%;
  margin-bottom: 10px;
}
.main-contact .main-contact__container .contact__container--form .form--input h2 {
  font-family: "Roboto", sans-serif;
  font-size: 2rem;
  font-style: normal;
  font-weight: 100;
  color: black;
}
.main-contact .main-contact__container .contact__container--form .form--input img {
  margin-right: 10px;
}
.main-contact .main-contact__container .contact__container--form .form--input input {
  max-width: 550px;
  width: 100%;
}
.main-contact .main-contact__container .contact__container--form .form--input:nth-child(5) input {
  height: 100px;
}
.main-contact .main-contact__container button {
  background-color: black;
  color: #fafaf5;
  margin: 10px;
  width: 100px;
  margin-left: calc(50% - 50px);
  border: 1px solid grey;
}

.need {
  display: flex;
  flex-direction: column;
  height: 100vh;
  margin: 0;
}

/*# sourceMappingURL=styles.css.map */
