* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

body{
    margin: 0;
    padding: 0;
    font-family: 'Cardo', serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

.navbar{
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    background-color: #282923;;
    width: 100%;
    height: 5em;
    z-index: 1;
}

.nav{
    display: flex;
    justify-content:  right;
    list-style: none;
    margin-right: 15%; 
}

.nav > li > a{
    color: white;
}
.navbar > a{
    color: white;
}
.nav > li > a:hover{
    color: #ffef00;
}
.navbar > a:hover{
    color: #ffef00;
}


.logo{
    flex: 1 1 auto;
    margin-left: 5%;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
    font-size: 1.5em;
}

a{
    font-family: 'Oswald', sans-serif;
    font-size: 1.2em;
    margin: 1em;
    color: #ffef00;
    text-shadow: 1px 1px 1px black;
    text-decoration: none;
    text-transform: uppercase;
}

a:hover{
    color: white;
}

.banner-area{
    position: relative;
    width:100%;
    height: 100vh;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    
}

.banner-area, .resume-area, .proj-area, .github-area{
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: row;
    width: 100%;
    min-height: 120vh;
    height: 60em;
}

.my-text{
    width: 60%;
    height: 80%;
}
.proj-area > .mytext{
    height: 10%;
}
h1{
    font-size: 3.5em;
    color: #ffef00;
    text-shadow: 1px 1px 1px black;
}
h2{
    font-size: 1.8em;
    color: #ffef00;
    text-shadow: 1px 1px 1px black;
}

p{
    font-size: 1.5em;
    color: white;
    text-shadow: 1px 1px 1px black;
}

.banner-area{
    background-image: url("laptop.jpg");
}

.banner-area, .proj-area {
    background-color: #1F2833;
}

.resume-area, .github-area{
    background-color: #26466D;   
}

.round-img{ 
    border-radius: 50%;
    width: 15em;
    margin: 1em;
    box-shadow: 2px 2px 2px black;
    transition: transform .05s;
}

.vertical-img{
    display: block;
    margin: 1em;
    height: 40em;
    box-shadow: 1px 1px 1px black;
}

.vertical-img:hover{
    transform: scale(1.3);
    box-shadow: 3px 3px 3px black;
}

.proj-link{
    height: 3em;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

.link{
    margin-left: 1em;
    margin-right: 1em;
}

.link:hover{
    color: white;
}


.projs{
    display: grid;
    width: 80%;
    height: 70%;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    grid-gap: 2em;
    margin-bottom: 10em;
}
.proj{
    border: 2px orange;  
    padding-bottom: .5em;
    padding-top: 0;
    display: flex;
    flex-direction: column;
    border-radius: .5em;
    text-align: center;
}

#projects{
    height: auto;
}

#my-text-projects{
    margin-top: 7em;
    height: 12em;

}

.project-image{
    margin-left: auto;
    margin-right: auto;
    width: 42vh;
    height: 27vh;
    box-shadow: 2px 2px 2px black;
}
@media screen and (min-width: 100vh) {
    .project-image:hover{
        transform: scale(1.5);
        box-shadow: 3px 3px 3px black;
    }
}