/* Mini */
@media screen and (max-width: 640px) {
    
    header {
        display: flex;
        justify-content: center;
        font-size: 40px;
        font-family: "Caveat", cursive;
    }

    #words {
        display: flex;
        justify-content: center;
        font-size: 24px;
        margin-left: 12.5%;
        width: 75%;
    }

    #sandwich {
        width: 50%;
        margin-left: 25%;
    }

}

/* Maxi */
@media screen and (min-width: 641px) {

    header {
        display: flex;
        justify-content: center;
        font-size: 64px;
        font-family: "Caveat", cursive;
    }

    #words {
        display: flex;
        justify-content: center;
        font-size: 32px;
        margin-left: 12.5%;
        width: 75%;
        font-family: "Caveat", cursive;
    }

    #sandwich {
        width: 50%;
        margin-left: 25%;
    }

}