:root {
    --blanco: #ffffff;
    --negro: #000000;
}

html {
    box-sizing: border-box;
    font-size: 62, 5%;
    line-height: 1.6;
    background-image: url('../img/back.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

body {
    font-size: 1.6rem;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #000000bb;
}

h1,
h2,
h3,
h4 {
    color: var(--blanco);
    margin: 0;
}

h1 {
    font-size: 1.4rem;
}

h2 {
    font-size: 1rem;
    margin: 1rem 0;
}

h3 {
    font-size: .8rem;
}

h4 {
    font-size: .8rem;
}
p {
    font-size: .8rem;
}

a {
    text-decoration: none;
    color: var(--blanco);
}

img {
    max-width: 100%;
}

.contenedor {
    width: min(95%, 120rem);
    margin: 0 auto;
}

.centrar {
    text-align: center;
}

.header {
    margin: 0 auto;
    padding: 2rem 0 0 0;
}
.logo {
    display: inline-block;
    border-radius: 50%;
    animation: pulso 2s infinite;
    background: radial-gradient(circle, #00d4ff, #001f3f);
    width: 8rem;
}

.logo img {
    display: block;
    border-radius: 50%;
}

@keyframes pulso {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.6);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(0, 212, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 212, 255, 0);
    }
}

.header__user {
    font-weight: bold;
}

.header__info {
    font-weight: normal;
}

.principal__titulo {
    text-align: center;
}


.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .8rem;
}
.grid a:last-of-type{
    grid-column: 1 / 3;
}

.red {
    height: 6rem;
    background-color: rgba(255, 166, 0, 0);
    backdrop-filter: blur(.6rem);
    border: 1px solid #ffffff20;
    border-radius: 1rem;
    color: var(--blanco);
    display: flex;
    align-items: center;
}

.red__foto {
    border-radius: 50rem;
    width: 4rem;
    border: 1px solid var(--blanco);
    margin: .8rem;
}

.red__info {
}

.red__info h3 {
}

/* Footer */
.footer {
}

.footer__info h2 {
}

.footer__logo {
    width: 10rem;
}
