@import url('https://fonts.googleapis.com/css2?family=Iceland&display=swap');

* {
    font-family: "Iceland";
    transition: 0.5s;
    font-weight: 400;
    color: white;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(22, 22, 22);
    margin: 0;
    flex-direction: column;
}

#up {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    font-size: 3em;
    width: 100%;
    margin-top: 7%;
}

#up img {
    height: 200px;
}

#down {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

a {
    text-decoration: none;
    background-color: white;
    color: rgb(31, 31, 31);
    width: 300px;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
    font-size: 2em;
    border: none;
}

a:hover {
    color: white;
    background-color: black;
}
