body {
    padding: 10px;
    animation: blurIn 1.5s forwards;
    animation-iteration-count: 1;
    background-image: url("https://pbs.twimg.com/profile_images/1106972720821125120/qCJPJYqn.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    width: 100%;
    display: block;
}

#img-dcc {
    width: 400px;
    border-radius: 10px;
    float: right;
}

.fade-in {
    animation: fadeIn 1.5s forwards;
}

#caja {
    text-align: center;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.blanco-sombreado {
    color: white;
    text-shadow: black 0.1em 0.1em 0.2em;
}

#botones {
    margin-top: 15px;
    
}

#boton1, #boton2, #boton3 {
    transition: all 0.3s ease;
    font-size: 30px;
    padding: 10px 50px;
    margin: 20px;
}

#boton1:hover, #boton2:hover, #boton3:hover {
    transform: scale(1.5);
}

#fotos {
    display: flex;
    position: absolute;
    bottom: 1vh;
}

.foto img {
    float: left;
    width: 45%;
    border-radius: 150px;
    border: 5px solid white;
    margin: 0px 90px;
}

.nombre {
    font-size: 25px;
}

#fotos .nombre {
    float: left;
    margin: 0px 0px 0px 25%;
}

@keyframes blurIn {
    0% {
        backdrop-filter: blur(0px);
    }

    100% {
        backdrop-filter: blur(5px);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}
