:root {
    --fuentePrincipal: "Lilita One", sans-serif;
}

html {
    box-sizing: border-box;
    font-size: 62.5%; /* 1rem = 10px */
    
}

body {
    background-color: rgb(3, 3, 45);
    background-attachment: fixed;
    margin: 0;
}

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

.contenedor {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}


.info__img {
    width: 170px;
    margin: 0 auto;
}

.info__titulo {
    font-family: var(--fuentePrincipal);
    color: white;
    font-size: 100px;
    text-align: center;
}

@media (max-width: 768px) {
    .info__titulo {
    font-size: 50px;
}
}

.info__contenido {
    text-align: center;
    color: bisque;
    font-size: 25px;
    opacity: .7;
}

@media (max-width: 768px) {
    .info__contenido {
        font-size: 20px;
    }
}

.redes {
   display: flex;
   justify-content: center;
   align-items: center;
   gap: 4rem;
   padding: 1rem 0 5rem;
}

.redes__twitter,
.redes__linkedin,
.redes__github {
    width: 25px;
    height: 100%;
    color: #fff;
}

.redes__twitter:hover,
.redes__linkedin:hover,
.redes__github:hover {
   transform: scale(1.2);
    color: rgb(14, 193, 127);
}