body {
    background-image: url("pexels-cottonbro-5435310.jpg");
    background-position: center;
    background-size: cover;
}

h1 {
    font-family: 'Fredericka the Great', cursive;
    font-size: 80px;
    color: white;
    text-align: center;
    opacity: 1;
}

div {
    display: block;
    margin: 0 auto;
    animation: fadeIn ease 20s;
    width: 50%;
    transform: translate(50%, 10%);
}

h2 {
    font-family: 'Fredericka the Great', cursive;
    font-size: 40px;
    color: white;
    text-transform: none;
    text-align: center;
    opacity: 1;
    text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}


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

    100% {
        opacity: 1;
    }
}

img {
    display: block;
    margin: 0px auto;
    height: 300px;
    width: 175px;
}

a {
    color: white;
    border-radius: 20px;
    text-align: center;
    width: 75%;
    font-size: 50px;
    display: block;
    margin: 5 auto;
    font-family: 'UnifrakturCook', cursive;
    text-decoration: none;
    background-color: black;

}

footer {
    font-size: 15px;
    color: black;
    text-align: center;
    background-color: white;
    display: block;
    width: 100%;
    padding: 5px;
    border-radius: 5px;
}