body {
    font-family:"Cascadia Mono", monospace;
    background-color:rgb(255, 255, 255);
    color: rgb(35, 31, 32);
    margin: 0px;
}

h3 {
    font-size: larger;
    text-transform: uppercase;
}

nav {
    background-color:rgb(0, 230, 96);
    font-weight: bold;
    color: rgb(245, 245, 245);
    padding: 1.5rem 8rem;
    display: flex;
    justify-content:space-between;
}

.nav-item {
    color: rgb(35, 31, 32);
    text-decoration: none;
    font-size: small;
}

.nav-item a:hover {
    text-decoration: underline;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease-out;
    transform: translateY(-00.2rem);
    background-color: white;
    color: rgb(35, 31, 32);
}

.nav-links {
    display: flex;
    gap: 5rem;
    align-items: center;
}

.logo {
    width: 60px;
}

.button {
    background-color: rgb(0, 230, 96);
    color: rgb(12, 12, 12);
    font-weight: bold;
    font-size: 0.9rem;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 2rem;
    border-style: solid;
    border-width: 0,5;
    border-color: rgb(0, 230, 96);
}

.button:hover {
    background-color: white;
    border-color: rgb(0, 230, 96);
    color: rgb(0, 230, 96);;
}

#integrantes {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
}

#persona {
    background-color: rgb(245, 245, 245);
    justify-content: center;
    line-height: 1rem;
    padding: 1rem;
    text-align: center;
    padding: 3rem 4rem;
    border-color: rgb(245, 245, 245);
    border-style: solid;
    border-width: 0,5rem;
}

#persona:hover {
    border-color: rgb(0, 230, 96);
    background-color: rgb(255, 255, 255);
    border-style: solid;
    border-width: 0,5rem;
}

#persona p {
    font-size: small;
    padding-bottom: 2rem;
}

#persona .avatar {
    width: 8rem;
    height: 8rem;
    border-radius: 10rem;
    padding: 0.5rem;
}

#rótulo {
    padding: 2rem 8rem;
    display: flex;
    justify-content: center;
    text-align: center;
    background-color: rgb(245, 245, 245);
}

#rótulo p {
    text-decoration: none;
    font-size: 8pt;
}

footer {
    padding: 1rem 10rem;
    display: flex;
    text-align:left;
    background-color: rgb(0, 230, 96);
    gap: 10rem;
}

footer p {
    text-decoration: none;
    font-size: 8pt;
    color: rgb(35, 31, 32);
}

#app {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem;
    padding-top: 5rem;
    padding-bottom: 5rem;
}