@font-face {
    font-family: Papyrus;
    src: url("../fonts/papyrus.ttf");
}

html, body {
    height: 100%;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    color: #000000;
}

h1, #animated-text{
    font-family: Papyrus;
    font-size: calc(10vw + 20px);
    text-align: center;
    margin: 0;
    padding: 0;
    position: relative;
}

img {
    max-width: 100%;
    height: auto;
}

#footer-text {
    font-family: Papyrus;
    font-size: 1.5em;
    position: fixed;
    bottom: 10px;
    animation: bounce 2s infinite
}

.letter {
    display: inline-block;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes colorChange {
    0%, 100% {
        color: #ffffff;
    }
    50% {
        color: #000000;
    }
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}