* {
  margin: 0;
  padding: 0;
  font-size: 16px;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Ubuntu', sans-serif;  
  background-color: #010101;
}

/* Home Button */
.home__button {
  position: fixed;
  right: 0;
  bottom: 0;
}

.tittle {
  padding: 4.39vw;
  font-size: 3rem;
  font-weight: 500;
  text-align: center;
  color: #F0ECE2;
}

.tittle span a{
  font-size: 4rem;
  font-weight: 700;
  text-decoration: none;
  color: #F0ECE2;
}

.tittle span a:hover {
  color: #ACDBDF;
}

/* Portfolio */

.portfolio {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  height: auto;
  padding: 0 4.39vw;
  background-color: #010101;
}

.portfolio__trio {
  display: flex;
  flex-direction: column;
  justify-content: center;
  row-gap: 20px;
}

.portfolio__project {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  padding: 20px;
  color: #F0ECE2;
}

.portfolio__project img {
  max-width: 362px;
  border-radius: 2.29vw;
}

.portfolio__project h2 a {
  font-size: 2rem;
  font-weight: 700;
  text-decoration: none;
  color: #F0ECE2;
}

.portfolio__project a:hover {
  color: #ACDBDF;
}

.portfolio__project a:focus {
  color: #ACDBDF;
}

.portfolio__project p {
  font-size: 1rem;
  font-weight: 400;
}

.portfolio__project ul li {
  list-style: inside;
  font-size: 1rem;
  font-weight: 500;
}

/* Footer */
footer {
  margin-top: 2.20vw;
  padding: 1rem;
  text-align: center;
  color: #F0ECE2;
  background-color: #69779B;
}

footer p {
  font-size: 0.8rem;
  font-weight: 500;
}

.footer__icons {
  margin-right: 2rem;
}

@media (min-width: 900px) {
  * {
    font-size: 1.17vw;
  }

  .portfolio {
    display: flex;
    flex-direction: column;
    row-gap: 3vw;
    padding: 0 4rem;
  }

  .portfolio__trio {
    display: flex;
    flex-direction: row;
    justify-content: center;
    column-gap: 1.46vw;
  }

  .portfolio__project img {
    min-width: 26.35vw;
    border-radius: 2.29vw;
  }

  /* Footer */
  footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 2.20vw;
    padding: 2.78vw 4.39vw;
  }
  
  footer p {
    font-size: 1.25rem;
    font-weight: 500;
  }

  .footer__icons img {
    min-width: 1.25rem;
  }
  
}