/*Main section*/

h1 {
    font-family: "Rokkitt", sans-serif;
    color: #38332B;
    font-size: 2.7rem;
    text-align: center;
    margin-top: 20px;
    overflow: hidden;
}

p.mono {
    letter-spacing: 5px;
    font-size: 1.2rem;
    text-align: center;
    font-family: "Urbanist", Arial, Helvetica, sans-serif;
    font-weight: 200;
    margin-top: -13px;
    text-shadow: 2px 2px rgba(255, 255, 255, 1);
    padding: 0 0;
}

.shoe-image {
    display: flex;
    justify-content: center; 
    align-items: center;     
    flex-direction: column;
    margin-top: 30px;
    margin-bottom: 10px;
    width: 100%; 
}

.design {
    border-radius: 4px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    margin: 20px 0;
    width: 80%;
}

@media screen and (max-width: 431px) {
    h1 {
        font-size: 2.3rem;
        margin-top: 10px;
    }
    
    .shoe-image {
        margin-top: 10px;
    }

    .design {
        width: 100%;
    }
} 