@media (max-width: 1400px) {

.title {
    max-width: 100vw;
    width: 500px;
    border-radius: 10px;
    padding: 20px;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: black;
    color: white;
}


.dessert {
    max-width: 100vw;
    height: 400px;
    width: 600px;
    border-radius: 10px;
    margin: 0px;
    filter: grayscale(0%);

}

.arctic {
    max-width: 100vw;
    height: 400px;
    width: 600px;
    border-radius: 10px;
    margin: 0px;
    margin-top: 10px;
    margin-bottom: 10px;
    filter: grayscale(0%);
}

.arctic h1 , .dessert h1 {
    position: absolute;
    bottom: 80px;
    right: 70px;
}


.links {
    display: flex;
    flex-direction: column;
    margin-top: 30px;
    max-height: 500px;
}

.arctic:hover, .dessert:hover {
    filter: grayscale(0%);
    scale: 1;
}
}