body,
html {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    color: #fff;
}

body {
    /*background: url(./assets/images/bg-image.jpg) no-repeat center center fixed;*/
    background-size: cover;
    background-color: #2c4059;
}

main {
    position: relative;
    /*opacity: 0;*/
    /*filter: blur(10px);*/
    padding: 2em 0;
    transition: opacity 2s ease-in-out, filter 2s ease-in-out;
}

header {
    margin-top: 1em;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header > img {
    width: 13em;
    height: 13em;
    border-radius: 100%;
    border: 1px solid #fff;
    box-shadow: rgba(28, 32, 93, 0.24) 0px 2px 8px 0px;
}

header > h1 {
    display: inline-block;
    font-size: 0.8em;
    font-weight: bold;
    border-radius: 1em;
    background-color: #000a;
    padding: 0.3em 0.6em;
    border: 1px solid #fffa;
    backdrop-filter: blur(10px) saturate(160%) contrast(180%);
    -webkit-backdrop-filter: blur(10px) saturate(160%) contrast(180%);
}

ul.menu {
    box-sizing: border-box;
    list-style: none;
    padding-left: 0;
    /*max-width: 480px;*/
    /*margin: 0 auto;*/
    /*padding: 1em 2em 2em 2em;*/
}

ul.menu > li {
    background-color: #ffbe74;
    backdrop-filter: blur(10px) saturate(160%) contrast(180%);
    -webkit-backdrop-filter: blur(10px) saturate(160%) contrast(180%);
    border-radius: 10em;
    padding: 0.5em;
    margin: 0.8em 0;
    box-shadow: rgb(28, 32, 93 / 24%) 0px 2px 8px 0px;
    transition: all 0.2s ease-in-out;
}


ul.menu > li:hover {
    transform: scale(1.1);
}

ul.menu > li > a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    text-decoration: none;
    color: #1e1c1c;
    font-weight: normal;
}


menu li > h2 {
    list-style: none; /* Remove bullet points */
}

#vanta {
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

footer {
    text-align: center; /* Centralizar conteÃºdo */
    font-size: 0.7em; /* Reduzir tamanho da fonte */
    color: #bdbdbd;
    padding: 0em;
}

div.content {
    max-width: 480px;
    margin: 0 auto;
    padding: 0em 2em 1em 2em;
}

.bio h1 {
    text-align: center;
    margin-top: 1em;
}

.bio p {
    text-align: justify;
}

.bio {
    /*display: none;*/
}

a {
    color: #fff;
    /*text-decoration: none;*/
}

.hide {
    display: none;
}


.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px; /* Espaçamento entre os blocos */
  padding: 16px; /* Espaçamento ao redor da galeria */
}

.grid-item {
  background: #f9f9f9; /* Fundo opcional */
  border: 1px solid #ddd; /* Borda de separação opcional */
  border-radius: 8px; /* Bordas arredondadas */
  padding: 12px; /* Espaçamento interno do conteúdo do bloco */
  text-align: center; /* Centraliza o texto e o conteúdo do bloco */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Sombra para destacar */
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.grid-item:hover {
  transform: scale(1.03); /* Leve zoom no hover */
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2); /* Sombra mais evidente */
}

.grid-item h2 {
  font-size: 1.2rem;
  margin-bottom: 8px; /* Espaço entre o título e a imagem */
}

.grid-item img {
  width: 100%; /* Imagem ocupa 100% da largura do bloco */
  height: auto; /* Mantém proporção da imagem */
  border-radius: 4px; /* Bordas arredondadas */
  display: block;
}

