* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    --color-primary: #FE00FF;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
    overflow-x: hidden;
}
body {
    background-color: #020202;
    color: white;
}
h1 {
    text-align: center;
    padding: 1rem 0 2rem 0;
    background-color: #0F0F17;
    border-radius: 10px;
}
.container nav {
    background-color: aliceblue;
    position: fixed;
    right: 0;
    top: 0;
    margin: 20px 20px 0 0;
    padding: 10px;
    border-radius: 10px;
}
.container li {
    margin: 5px 10px;
    list-style: none;
    color: black;
}
.container a {
    text-decoration: none;
    color: black;
}

.container a:hover {
    border-radius: 10px;
    color: var(--color-primary);
}
img {
    height: 30rem;
    object-fit: cover;
    object-position: bottom;
}
h2 {
    font-size: 1.7rem;
    margin: 25px 0 10px 0;
}
h3 {
    margin: 15px 0 5px 0; 
}
.relato-aluno {
    font-family: 'Georgia', serif; /* ou 'Courier New', ou cursiva */
    font-style: italic;
    padding: 10px;
    border-left: 4px solid var(--color-primary);
    margin: 10px 0;
  }
summary {
    color: #ff6aff;
}
footer {
    text-align: center;
}
#btn {
    text-align: center; 
    margin-top: 20px;
}
#btn > a {
    display: inline-block;
    text-decoration: none;
    background-color: var(--color-primary);
    color: white;
    padding: 25px 45px;
    border-radius: 10px;
    animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(211, 215, 218, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(0, 174, 255, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 174, 255, 0);
  }
}
.container-2 {
    margin-top: 30px;
}
.container-2 ul{
    display: flex;
    justify-content: center;
}
.container-2 a {
    margin-right: 10px;
    text-decoration: none;
    color: gray;
}
/*versao de celular*/

@media only screen and (max-width: 600px) {
    img {
    height: 10rem;
    object-fit: cover;
}
}