html {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;

    background: black;
}

body {
    max-width: fit-content;
    margin: 0 auto;
}

a {
    display: block;
    color: hotpink;
    text-decoration: none;
    margin-top: 10rem;
    animation: pulse-animation 2s infinite;
}

a:hover {
    animation: pulse-animation 0.5s infinite;
}

pre {
    margin: 0;
    padding: 0;
    width: fit-content;
}

@keyframes pulse-animation {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}
