#og img{
    width: 50%;
    padding:0;
    margin:0;
}

#story h1{
    font-size: 8vw;
}
#story div{
    max-width: 45rem;
    margin: auto;
    padding: 1rem;
}

#story div{

    p{
        font-size: 1.2rem;
        text-align: center;
    }

    img{
        display: inline;
        /* border: 1px solid black; */
    }
}

#about {
    background-color: black;
    color: white;
    /* background-image: url(../images/ohno-foundry-logo.png); */
    /* background-size: 50%;
    background-repeat: no-repeat;
    background-position: bottom;
    background-position-x: right; */
}

#about h1{
    font-size: 8vw;
}

#about .grid{
    display: grid;
    grid-template-columns: 35vw auto;
    grid-template-areas: 
        "photo text"
        "photo button";
    /* justify-content: center; */
    align-items: center;
    column-gap: 3vw;
}

#about .grid #photo{
    grid-area: photo;
    min-width: 35vw;
    height: 100%;
    border: 1px solid white;
    margin-right : 3vw;
    background-color: white;
    display:flex;
    align-items: center;
    justify-content: center;
}

#photo img{
    width: 100%;
    margin: auto;
}

#about .grid #text{
    grid-area: text;
}

#about .grid p{
    padding-bottom: 1rem;
}

#about .button{
    grid-area: button;
    margin-top: 2rem;
}

#about .button p{
    color: white;
    text-align: center;
    padding: 16px;
    border: 1px solid white;
    /* width: 200px; */
    margin: auto;    
}

#about .button p:hover{
    background-color: white;
    color: black;
}

@media (max-width:500px){
    #about .grid{
        grid-template-columns: 1fr;
        grid-template-areas: 
            "photo"
            "text"
            "button";
        grid-gap: 16px;
    }

    #about h1{
        font-size: 4rem;
    }

    #about .button{
        margin-top: 0;
    }
}