html {
    margin: 0;
    width: 100%;
    height: 100%;
}

body {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url("https://github.com/iyanabroch/iyanabroch.neocities.org/blob/main/ERROR/fondo%20espacio.gif?raw=true");
    background-repeat: repeat;
    background-position: top left;
    color: #ff8ad3;
    font-size: 30px;
    font-family: "Comic Sans MS", cursive, sans-serif;
}

.imagen-grande {
    display: block;
    margin: 0 auto;
    width: 300px;
    height: auto;
}

.imagen-pequena {
    display: inline-block;
    vertical-align: middle;
    width: 40px;
    height: auto;
    margin-right: 8px;
}

a .animated-text,
.animated-text {
    -webkit-animation: pop 1s ease-in-out infinite alternate;
    animation: pop 1s ease-in-out infinite alternate;
    -moz-animation: pop 1s ease-in-out infinite alternate;
    display: inline-block;
    color: #ff8ad3;
    font-size: 25px;
    text-decoration: none;
}

a .animated-text:hover,
.animated-text:hover {
    color: #ff47b8;
}
        
        @keyframes pop {
        from { transform:scale(0.95) }
        50% { transform:scale(1) }
        to { transform:scale(0.95) }
        }
        
        @-webkit-keyframes pop {
        from { -webkit-transform:scale(0.95) }
        50% { -webkit-transform:scale(1) }
        to { -webkit-transform:scale(0.95) }
        }