body {
    display: flex;
    flex-direction: column;
    text-align: center;
    background-color: #f8f5f2;
    align-items: center;
    gap: 2vh;
    margin: auto;
}

h1 {
    font-size: 5vh;
    text-transform: uppercase;
}

p {
    font-size: x-large;
    text-transform: uppercase;
}

@media (min-width: 1300px) {
    div {
        background-color: #fff;
        border-radius: 2vh;
        display: flex;
        justify-content: space-between;
        padding: 2vh;
        width: 100vh;
        transition: all 0.3s ease;
        cursor: pointer;
    }
    
    div:hover {
        transform: scale(1.2);
        border: 2px solid #000;
    }
}

@media (min-width: 400px ) and (max-width: 1300px) {
    div {
        background-color: #fff;
        border-radius: 2vh;
        display: flex;
        justify-content: space-between;
        padding: 2vh;
        width: 45vh;
        transition: all 0.3s ease;
        cursor: pointer;
    }
    div:hover {
        transform: scale(1.1);
        border: 2px solid #000;
    }
}

@media (max-width: 390px) {
    div {
        background-color: #fff;
        border-radius: 2vh;
        display: flex;
        justify-content: space-between;
        padding: 2vh;
        width: 35vh;
        transition: all 0.3s ease;
        cursor: pointer;
    }
    div:hover {
        transform: scale(1.1);
        border: 2px solid #000;
    }

    p {
        font-size: smaller;
    }
}