@media only screen and (max-width: 600px) {
    body {
        background-image: url('../images/squarepattern.png');
        background-size: cover;
        background-repeat: no-repeat;
    }
    header{
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        margin: auto;
        padding: 0px;
        width: 100%;
    }
    header h2{
        font-size: 20px;
        margin: auto;
        padding: 5px;
        width: 50%;
    }
    header h1{
        font-size: 20px;
        margin: auto;
        padding: 5px;
        width: 100%;
    }
    .hero {
        margin: auto;
        width:90%;
        display: flex;
        align-items: end;
        justify-content: center;
        color: black;
        background-color: white;
        max-width: fit-content;  
    }
    .hero h1{
        display: flex;
        padding: 20px;
        position: absolute;
        margin: auto;
        color: rgb(255, 255, 255);
        max-width: 100%;
        min-width: 30%;
        font-size: 10px;
    }
    .hero img{
        width: 80%;
        margin: auto;

    }
    .hero h2 {
        margin: auto;
    }
    .About{
        display: flex;
        align-items: center;
        width: 90%;
        margin: auto;
        min-width: 45%;
        max-width: auto;
        flex-direction: column;
        background-color: white;
        max-width: fit-content;
    }
    .About h2{
        font-size: 20px;
        margin: auto;
    }
    .About p{
        font-size: 15px;
        width: 100%;
        margin: auto;
    } 
    .resume{
        width: 90%;
        display: flex;
        flex-direction: column;
        margin: auto;
        text-align: center;
        min-width: 90%;
    }
    .resume a{
        font-size: 11px;
        display: flex;
        flex-direction: column;
        margin: auto;
        text-align: center;
        padding: 10px 10px 10px;
        border-radius: 20px;
        width: 50%;

        color: black;
        text-decoration: none;
    }
    .resume img{
        width: 100%;
        justify-content: center;
        margin: auto;
        min-width: 100%;
    }
    .photography{
        margin: auto;
        width: 90%;
        text-align: center;
    }
    .SevenDimages{
        width: 95%;
        margin: auto;
    }
    
    .SevenDimages img{
        width: 100%;
    }
}
*{
    box-sizing: border-box;
}