body {
    font-family: Cambria, Calibiri, sans-serif;
    padding: 0;
    margin: 0;
    background-color: #38383a;
    overflow-x: hidden;
}

header {
    text-align: center;
    height: 50px;
    color: beige;
    font-size: 2em;
    padding-top: 50px;
    padding-bottom: 25px;
    margin-bottom: 30px;
    border-bottom: 1px solid beige;
}

nav {
    position: fixed;
    top: 0;
    width: 250px;
    height: 500px;
    background-color: beige;
    text-align: center;
    font-size: 1.4em;
    padding: 40px 10px 10px 10px;
    margin: 10px 10px 10px 20px;
    clip-path: polygon(0% 0%,100% 0%,100% 70%,0% 90%);
}

.nav_about_text {
    font-size: .8em;
}
.nav_portrait {
    background-image: url("resources/portfolioself_edited.jpg");
    height: 210px;
    width: 210px;
    background-position: center;
    background-size: cover;
    transform: scale(1.3) translateY(5px);
}

.nav_portrait_container {
    height: 210px;
    width: 210px;
    overflow: hidden;
    border-radius: 120px;
    margin-left: auto;
    margin-right: auto;
    border: 3px solid #38383a;
}
.main {
    width: 1024px;
    margin-left: auto;
    margin-right: auto;
}

.homepage_photos {
    width: 1000px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: auto auto auto;
    grid-auto-rows: 250px;
    gap: 10px;
    
}

.homepage_photos img{
    margin-left: auto;
    margin-right: auto;
    max-width: 95%;
    max-height: 95%;
}

.two_vertical_photos {
    text-align: center;
}
.two_vertical_photos img{
    display: inline;
    max-height: 80%;
    max-width: 80%;
}
.two_vertical_photos img:first-child {
    margin-right: 10px;
}

.photo_hover:hover {
    scale: 1.7;
    transition: all .6s ease;
    -webkit-transition: all .4s ease;
    box-shadow: black 2px 2px 20px;
}

footer {
    height: 75px;
    margin-top: 15px;
    color: beige;
    text-align: center;
    clear: both;
}
footer div {
    padding: 15px;
}

/*begin mobile styles*/

@media only screen and (max-width: 1600px) {

body {
    width: 350px;
    margin-left: auto;
    margin-right: auto;
    border-left: 1px solid beige;
    border-right: 1px solid beige;
}

header {
    font-size: 1.4em;
    padding-top: 25px;
    margin-bottom: 15px;
    padding-left: 100px;
}

nav {
    position: absolute;
    width: 100px;
    height: 140px;
    margin: 5px;
    padding: 5px;
    clip-path: none;
}
.nav_about_text {
    font-size: .5em;
    position: static;
    width: 315px;
    background-color: beige;
    margin-top: 15px;
    border-radius: 15px;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 3px;
    padding-bottom: 3px;
}
.nav_portrait {
    height: 75px;
    width: 75px;
}
.nav_portrait_container {
    height: 75px;
    width: 75px;
    margin-top: 5px;
}

main {
    width: 350px;
    text-align: center;
}

.homepage_photos {
    display: block;
    width: 350px;
    margin-top: 65px;
}
.homepage_photos img {
    margin-bottom: 25px;
}

.two_vertical_photos img:first-child {
    margin-right: 5px;
}
.two_vertical_photos img {
    max-height: 225px;
}

.photo_hover:hover {
    transition: none;
    scale: 1;
    box-shadow: none;
}

footer {
    font-size: .7em;
}
}