:root {
    font-size: 22px;
    --celeste: #0a597b;
    --text-azulado: #eef;
}

* {
    font-family: "Montserrat", sans-serif;
    color: var(--text-azulado);
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    width: 100%;
    height: 90vh;
    /* background-color: #161616; */
    background: rgb(34, 34, 34);
}

.bg-gradient {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(
        circle,
        rgba(34, 34, 34, 1) 24%,
        rgba(28, 49, 50, 1) 74%,
        rgba(21, 64, 66, 1) 100%,
        var(--celeste)
    );
    top: 0;
    left: 0;
    z-index: -1;
}

.content, nav {
    width: 80%;
    max-width: 768px;
    margin: 0 auto;
}

#header {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 4rem;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#logoiso {
    width: 50vw;
    max-width: 680px;
}

#span-7x {
}

.section {
    margin: 3rem auto;
    background: none;
}   


.section h1 {
    font-family: "MuseoModerno", sans-serif;
    margin-top: 5rem;
    margin-bottom: 0.5rem;
}

.section ul {
    margin-top: 2rem;
}
.section li {
    margin: 1rem;
}

footer {
    margin-top: 3rem;
    margin-bottom: 1rem;
    padding: 0.6rem;
    backdrop-filter: blur(10px);
}

footer, nav {
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    background-color: rgba(0, 109, 116, 0.1);
}

footer span, footer a, nav a {
    display: flex;
    align-items: center;
    font-size: 0.7rem;
    font-weight: 300;
    margin: 0.4rem;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

footer img {
    height: 0.8rem;
    margin-right: 0.4rem;
    fill: var(--celeste);
}

nav {
    position: fixed;
    padding: 0.5rem;
    left: 50%;
    top: 0.5rem;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav #links {
    display: flex;

}

#logonav {
    height: 1.5rem;
}