* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Red Hat Display', sans-serif;
}

html {
    background-color: #1f1f1f;
}

.head {
    height: 20vh;
}

.head a {
    color: white;
    text-decoration: none;
}

.head a:hover {
    opacity: 0.8;
}

.back-arrow {
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 20px;
    color: white;
    text-decoration: none;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0 20px;
}

.container .box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

.container .box .dream {
    display: flex;
    flex-direction: column;
    width: 25%;
}

.container .box .dream img {
    width: 100%;
    padding: 10px;
    border-radius: 25px;
}

p {
    color: white;
    font-size: 20px;
    text-decoration: none;
    font-weight: lighter;
    display: block;
    width: fit-content;
    margin: 100px auto;
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1024px) {
    .container .box .dream {
        width: 50%;
    }

    .container .box .dream img {
        width: 100%;
        padding: 7px;
        border-radius: 15px;
    }

    .head {
        height: 10vh;
    }
}

/* Smartphone */
@media (max-width: 480px) {
    .container .box .dream {
        width: 50%;
    }

    .container .box .dream img {
        width: 100%;
        padding: 3px;
        border-radius: 15px;
    }

    .head {
        height: 15vh;
    }
}