@font-face {
  font-family: 'Silkscreen';
  src: url('fonts/Silkscreen-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body, h1, h2, ul, li, p, dd, dt, dl {
  margin:0px;
  padding:0px;
}

body {
    font-family: 'Roboto', sans-serif;
    background: #E7F0FF; /* fallback para navegadores que não suportam gradientes */
    background: -webkit-linear-gradient(90deg, rgba(231, 240, 255, 1) 100%, rgba(183, 198, 232, 1) 0%); /* Suporte para Safari 5.1 a 6.0 */
    background: -moz-linear-gradient(90deg, rgba(231, 240, 255, 1) 100%, rgba(183, 198, 232, 1) 0%); /* Suporte para Firefox 15-44 */
    background: -o-linear-gradient(90deg, rgba(231, 240, 255, 1) 100%, rgba(183, 198, 232, 1) 0%); /* Suporte para Opera 11.1-12 */
    background: -ms-linear-gradient(90deg, rgba(231, 240, 255, 1) 100%, rgba(183, 198, 232, 1) 0%); /* Suporte para IE 10+ */
    background: linear-gradient(90deg, rgba(231, 240, 255, 1) 100%, rgba(183, 198, 232, 1) 0%);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding:2rem;
}

.container {
  display:flex;
  flex-direction: column;
  align-items: center;
}

.profile {
  display: flex;
  align-items: center;
}

.avatar {
  background:#f1f1f1;
  width: 100px;
  height: 100px;
  overflow: hidden;
  border-radius: 50%;
  display: flex;
  justify-self: center;
  align-items: center;
  padding: 0.5rem;
  border:1px solid #f3f3f3;
  margin:2rem auto;
}

.avatar img {
  height: auto;
}

img {
  display:block;
  max-width: 100%;
}

.list {
  display: flex;
  gap:15px;
  margin:1rem 0;
}

.list a {
 display:block;
}

ul {
  list-style: none;
}

main {
  background: white;
  border-radius:20px;
  padding: 3rem 2rem;
  max-width: 580px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

h2 {
  font-family: 'Silkscreen';
  text-align: center;
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 1rem;
}

h4 {
  margin: 0.4rem 0;
  font-size:1.6rem;
  font-family: 'Silkscreen',sans-serif;
  color:#e58a8a;
}

p.description {
  font-size:1.4rem;
  text-align: center;
  color:#3e3e3e;
}

.aviso {
  margin:0.5rem;
  text-align: center;
  font-size: 1.1rem;
  color:#4b4b4b;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top:3rem;
}

.gallery img {
    width: 48%;
    cursor: pointer;
    border: 1px solid #f1f1f1;
    border-radius: 8px;
    transition: transform 0.2s;
}

.gallery img:hover {
    transform: scale(1.01);
}

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80%;
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

footer {
  margin:2rem 0;
}

footer p {
  text-align: center;
  color:#3e3e3e;
  font-size:0.8rem;
}

@media (max-width: 475px) {
  body {
    padding:1.2rem;
  }
  .gallery img {
    width: 100%;
  }
}