@import url('https://fonts.googleapis.com/css?family=Cormorant:300,300i,700i|Montserrat:300,300i,400&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; 
  }

wrapper {
    max-width: 1920px;
}

#my-name, #desktop-nav a {
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: black;
    letter-spacing: 1px;
    padding-left: 30px;
    padding-right: 30px;
}

nav a {
    width: 20%;
}

header {
    display: flex;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1;
    padding: 20px;
    background-color: white;
}

#bio {
    font-family: Cormorant;
    font-size: 80px;
    color: black;
    text-align: center;
    width: 80%;
    padding: 100px 30px 20px 30px;
    position: fixed;
    margin: auto;
    z-index: 1;
    right: 0;
    left: 0;
}

#contact-link {
    text-decoration: none;
    color: black;
    border-bottom: 2px solid black;
}

#contact-link:hover {
    color: blue;
    border-bottom: 2px solid blue;
}

#projects {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    flex-flow: row wrap;
    align-content: space-around;
 }

 .home {
     padding: 10px;
     opacity: .5;
 }

 #bio-about {
    font-family: Cormorant;
    font-size: 80px;
    color: black;
    text-align: center;
    width: 80%;
    padding: 100px 30px 20px 30px;
    margin: auto;
 }

 #experience {
     display: flex;
     justify-content: center;
     font-family: 'Montserrat', sans-serif;
     font-weight: 300;
     font-size: 20px;
     color: black;   
     margin-bottom: 100px;
 }

 .bold{
     font-weight: 400;
 }

 .italic{
     font-style: italic;
    font-weight: 700;
 }

 #left-col {
     width: 30%;
     padding-top: 120px;
     padding-right: 30px;
 }

 #right-col{
    width: 20%;
    padding-top: 120px;
    padding-left: 30px;
    flex-direction: column;
 } 
 
img:hover {
     opacity: 1;
 }

 #project-page {
     display: flex;
     align-items: flex-start;
     justify-content: space-between;
 }

 #right-content {
    width: 40%;
    padding: 200px 150px 30px 30px;
    position: fixed;
    bottom: 0;
    right: 0;
    top: 0;
    background: white;
 }

#left-content {
    display: inline-block;
}

#left-content img {
    padding-bottom: 30px;
    width: 50%;
}


 h1 {
    font-family: Cormorant;
    font-size: 40px;
    color: black;
    padding-bottom: 5px;
 }
 
 h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 15px;
    color: black;
    letter-spacing: 1px;
    padding-bottom: 30px;
 }

 h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 20px;
    color: black;   
    padding-top: 90px;
    line-height: 1.5;
    width: 50%;
    margin: auto;
 }
 a {
    text-decoration: none;
    color: black;
 }
 a:hover{
    color: blue;
 }

.active {
    color: blue;
}

#hamburger {
    visibility: hidden;
}

#ex {
    visibility: hidden;
}

#mobile-nav {
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    color: black;
    letter-spacing: 1px;
    display: none;
    padding-bottom: 30px;
    justify-content: center;
    width: 100%;
    background-color: white;
}

#mobile-nav a{
    display: block;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

 /* CSS for laptop */

@media (max-width: 1550px) {

#left-content {
    display: inline-block;
}

#left-content img {
    padding-bottom: 30px;
    width: 50%;
}

#right-content {
    width: 50%;
}
}

 /* CSS for smaller laptop */

 @media (max-width: 1250px) {

#my-name, nav a {
    padding-left: 15px;
    padding-right: 15px;
}

#left-content img {
    width: 50%;
}

#hamburger {
    visibility: visible;
}

#ex {
    visibility: visible;
}

#desktop-nav {
    display: none;
    background-color: white;
}
}

  /* CSS for ipad */

  @media (max-width: 1024px) {
    #my-name, nav a {
        padding-left: 5px;
        padding-right: 5px;
    }

 }

 /* CSS for large mobile */

 @media (max-width: 768px) {

    .home {
        padding: 2px;
    }

    #bio, #bio-about {
        font-size: 40px;
        padding: 100px 00px 0px 0px;
    }

    .home {
        width: 100%;
        padding: 0px;
    }

    #right-content {
        width: 80%;
        padding: 30px;
        margin: 0 auto;
        position: initial;
        text-align: center;
        align-items: center;
     }
    
    #left-content {
        display: inline-block;
    }
    
    #left-content img {
        padding-bottom: 30px;
        width: 100%;
    }

    #project-page {
        flex-direction: column;
    }

    #left-col {
        width: 40%;
        padding-right: 10px;
    }
   
    #right-col{
       width: 30%;
       padding-left: 10px;
    } 

    #hamburger {
       visibility: visible;
    }

    #ex {
        visibility: visible;
    }
    #desktop-nav {
        display: none;
    }

    h3 {
        width: 80%;
    }


 }

/* CSS for small mobile */

 @media (max-width: 677px) {

    #experience {
        display: block;
    }

    #bio, #bio-about {
        font-size: 30px;
        padding: 100px 00px 0px 0px;
    }

    #left-col {
        width: 80%;
        padding-right: 5px;
        margin: auto;
        font-size: 15px;
        padding-top: 40px;
    }
   
    #right-col{
       width: 80%;
       padding-left: 5px;
       margin: auto;
       font-size: 15px;
       padding-top: 40px;
    } 

    h3 {
        font-size: 15px;
     }

    #right-content {
        width: 100%;
        padding: 20px;
    }

    p {
        padding-bottom:10px;
    }
    

 }
