#logo{
    display: block;
    margin-left: auto;
    margin-right: auto;
}

#aboutButton{
    position: absolute;
    display: block;
    text-align: center;
    background-color: rgb(239, 165, 57);
    width: 150px;
    left: calc(50vw - 75px);
}
@media (max-width: 400px){
    #logo{
        width:50%;
        height:50vw; 
        left:25%;
    }
}
/*I was going to make separate layouts for each page, but
this became moot because the mobile layout kinda works for
all sizes. I just modify the size of the logo and stuff,
I think the centered layout otherwise works fine for
any size of device.*/
@media (min-width: 401px) and (max-width: 1024px){
}
@media (min-width: 1025px){
}