main {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.title {
    max-width: 100vw;
    width: 500px;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: black;
    color: white;
}


.dessert {
    display: flex;
    color: black;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background:url(../img/low_dessert.png);
    filter: grayscale(100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 400px;
    width: 600px;
    border-radius: 10px;
    margin: 40px;
    transition: scale 1s, filter 1s ease-in-out;
}

.arctic {
    display: flex;
    color: black;
    text-decoration: none;
    background:url(../img/low_iceberg.png);
    filter: grayscale(100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 400px;
    width: 600px;
    border-radius: 10px;
    margin: 40px;
    transition: scale 1s, filter 1s ease-in-out;
}

.arctic h1 , .dessert h1 {
    position: absolute;
    bottom: 80px;
    right: 70px;
}

.arctic:hover, .dessert:hover {
    filter: grayscale(0%);
    scale: 1.25;
}

.links {
    display: flex;
    flex-direction: row;
    margin-top: 30px;
    height: 500px;
}

@keyframes summon {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 100;
    }
}
