@keyframes fadeInSlideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background: linear-gradient(to right, #f8ebbe, #d1eaff);
    font-family: Alice, serif;
}

a {
    text-decoration: none;
}

h1 {
    font-weight: normal;
    font-size: 80px;
    color: #6982bb;
    margin: 0;
}

h2 {
    font-size: 54px;
    margin: -16px 16px 0 0;
    text-align: right;
    font-weight: lighter;
    color: #7a6300;
}

@media (max-width: 600px) {
    h1 {
        font-size: 50px;
    }

    h2 {
        font-size: 33px;
    }
}
