/* Universal Styles */
*{
    color: white;
    font-family: 'Courier New', Courier, monospace;
    font-weight: 200;
    box-sizing: border-box;
}   
.null-background-color{
    background-color: #242222;
    z-index: -2;
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
nav {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    
}
header nav a:hover{
    font-weight: 800;
}
.kr-logo{
    height: 100px;
    display: inline-block;
    transform: scale(1);
    transition: transform 0.1s ease-out;
}
.kr-logo:hover {
    transform: scale(1.2);
}

header nav a{
    font-size: 30px;
    padding-right: 4rem;
    padding-bottom: 2rem;
    text-decoration: none;
}
footer p{
    padding-top: 5rem;
    padding-left: 1rem;
}

/* Landing Page Styles */
main{
    z-index: 1;
}
body {
    margin: 4rem;
}
main h1{
    font-size: 10vw;
}
main h2{
    font-size: 2vw;
}
.landing-text{
    padding-left: 1rem;
}
.abstract-element{
    position: fixed;
    top: 0;
    right: 0;
    z-index: -1;
    pointer-events: none; 
    opacity: .18;
    padding: 3rem;
}
 /* Resume Styles */
.resume-container iframe{
    width: 100%;
    height: 80vh;
    margin-top: 3rem;
    padding: 0;
    border: none;
    background-color: black;
 }
 /* Work Styles */
.project-page-title{
    font-size: 5vw;
    padding-bottom: 2rem;
}
.projects{
    display: flex;
    flex-wrap: wrap;
    gap: 5rem;
    justify-content: center;
    padding: 2rem;
 }
 .project-preview{
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: calc(30% - .5rem);
    min-width: 15rem;
    max-width: 40rem;
 }
 .project-preview-title{
    word-wrap: break-word;
    font-size: 2rem;
    text-align: center;
    padding: 1rem;
 }
.project-preview img{
    width: 100%;
    height: auto;
    border-radius: .7rem;
    transform: scale(1);
    transition: transform 0.1s ease-out;
 }
 .project-preview img:hover{
    outline: 2px solid white;
    transform: scale(1.03);

 }
 /*Project Details Styles*/
 .project-details{
    padding: 0rem 2rem;
 }
 .project-details h1{
    font-size: 50px;
 }
 .project-details iframe{
    display: block;
    margin: 0 auto;
    width: 80vw;
    height: 50vw;
    max-width: 1000px;
 }
 .project-details h2{
    font-size: 30px;
 }
 .project-details h3{
    font-size: 20px;
    padding: 2rem 0;
 }
 .project-details img{
    max-width: 60vw;
    padding: 2rem 0
 }
/*About Styles*/
#map {
    height: 400px; 
    width: 100%;
}
.leaflet-control-zoom-in span{
    color:black;
}
.leaflet-control-zoom-out span{
    color: black;
}
.about-text h1{
    font-size: 50px;
    padding: 1rem 0;
}
.about-text h2{
    font-size: 25px;
    padding-bottom: 4rem;
}

 /*Responsive Styles*/

 @media (max-width: 600px) {
    nav{
        flex-direction: column;
        align-items: flex-start;
        
    }
    header nav a{
        padding-bottom: .5rem;
    }
    header nav a:nth-child(n+2){
        padding-left: 22px;
    }
    body{
        margin: 2rem;
    }
    
 }