@import url("https://fonts.googleapis.com/css?family=Roboto&display=swap");
@import url("https://fonts.googleapis.com/css?family=Lato");
@import url("https://fonts.googleapis.com/css?family=Raleway");
@import url("https://fonts.googleapis.com/css?family=Unica+One");
@import url("https://fonts.googleapis.com/css?family=Nanum+Pen+Script");
@import url("https://fonts.googleapis.com/css?family=Blanka");
@import url("https://fonts.googleapis.com/css?family=Rubik");
@import url("https://fonts.googleapis.com/css?family=Roboto+Mono");
@import url("https://fonts.googleapis.com/css?family=Londrina+Solid");
@import url("https://fonts.googleapis.com/css?family=Inknut+Antiqua");
@import url("https://fonts.googleapis.com/css?family=Orbitron");
@import url("https://fonts.googleapis.com/css?family=Jura");
/* Global Styling */
*{
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}
body{
    margin: 0%;
    font-family: Lato;
    background-color: #202020;
}

main{
    margin:    0 auto;
    max-width: 1800px;
}
a:-webkit-any-link{
    font-family: Lato;
    text-decoration: none;
    color: #F9DC68;
}

.paragraph-font{
    font-family: "Jura", "Lato";
    font-display:inherit;
    font-size: 1.5em;
    color: white;
    align-self: center;
    text-align: center;
    padding-top: 10%;
    line-height: 1.5em;
}

.highlight-text{
    color: #df861d;
}


.horizontal-flex{
    display: flex;
    justify-content: space-evenly;
    flex-direction: row;
}

.vertical-flex{
    display: flex;
    justify-content: space-around;
    flex-direction: column;
    margin-left: 10%;
}




/* Individual Page Titles */
.title-text{
    font-family: Lato;
    color: #e1ae36;
    font-weight: bold;
    font-size: 400%;
    letter-spacing: 0.1em;
    align-self: center;
}




/* Basic Screen skeleton styling */
.primary-format{
    background-color: #202020;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

.secondary-format{
    background-color: #282727;
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}




/* Navigation Bar */
.icon{
    display: none;
}

.topnav {
    overflow: hidden;
    height: inherit;
    align-self: center;
  }
  
  .topnav a {
    font-family: "Jura";
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 25px;
  }
  
  .active {
    background-color: #04AA6D;
    color: white;
  }
  
  .topnav .icon {
    display: none;
  }
  
  
  .topnav a:hover{
    color:#e1ae36;
    border-bottom-style:ridge;
    border-bottom-color: #e1ae36;
  }
  
.nav-bar{
    width: 100%;
    display: flex;
    background-color: #1A1A1A;
    justify-content: space-between;
}

.hover-line:hover a{
    color: #df861d;
    transform: scale(0.9);
}

.nav-content-align{
    align-self: baseline;
}



/* Title Name */
#main-name{
    font-family: "Lato";
    font-display:inherit;
    font-size: 600%;
    letter-spacing: 0.1em;
    color: #e1ae36;
    text-align: center;
    margin-bottom: 0%;
}

/* Sub-title Name */
#sub-name{
    font-family: "Jura";
    /* text-transform: uppercase; */
    letter-spacing: 0.1em;
    font-display:inherit;
    font-size: 400%;
    color: white;
    text-align: center;
    margin: 0%;
}

.main-content .paragraph-font{
    font-family: "Jura";
}


/* Landing Page Styling */
#home{

    min-height: 100vh;
}
#angle-down{
    text-align: center;
    bottom: 20%;
    color: #e1ae36;
    position: relative;
    animation: mymove 1.5s;
    transition: smooth;
    animation-iteration-count: infinite;
}

@keyframes mymove {
    from {top: 0px;}
    to {top: 10px;}
}



.main-content{
    margin-left: 25%;
    margin-right: 25%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content:space-around;
}
.secondary-content{
    width: inherit;
    align-items: center;
    display: flex;
    justify-content:space-evenly;
}




/* What I Do Page Styling */
#whatido{
    display: block;
    width: 100%;
    padding: 40px 0;
    text-shadow: none;
    text-align: center;
}

.speciality-section{
    height: 80%;
    width: auto;
    background-color:#282727;
    border-radius: 50px;
    padding: 20px 0;
    margin: 0 20px;
    border: 0;
    font: inherit;
    vertical-align: baseline;
    box-sizing: border-box;
    color:#FFFFFF ;
}


.container{
    background:#202020;
    color:aliceblue;
    font-size: 1.3em;
    border-radius: 0.5em;
    display: flex;
    justify-content:space-around;
    width: 20%;
    flex-direction: column;
    align-items: center;
    border: 1px solid #666362;
    transition: transform .2s;
    }
.container:hover{
    transform: scale(1.1);
}



.container-content{
        width: inherit;
        height: 70vh;
        align-self: center;
        display: flex;
        align-items: center;
        justify-content:space-evenly;
}

.container-content div{
    background-color: #202020;
    height: 80%;
}

.container img{
    padding: 5px;
}


.container h3{
    margin: 0%;
    color: #a2faa3;
    font-family: "Jura", "Lato";
    font-size: x-large;
}

.container p{
    font-family: "Jura", "Lato";
    padding: 10%;
    margin: 0%;
    text-align: center;
}


/* PROJECTS PAGE Styling */
#projects{
    display: block;
    width: 100%;
    height: max-content;
    padding: 40px 0;
    text-shadow: none;
    text-align: center;
}

.project-section{
    width: auto;
    background-color:#282727;
    border-radius: 50px;
    padding: 20px 0;
    margin: 0 20px;
    border: 0;
    border-bottom: 1px;
    border-bottom-color: #282727;
    font: inherit;
    vertical-align: baseline;
    box-sizing: border-box;
    color:#FFFFFF ;
}

.project-box{
    text-align: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 30px;
    margin-top: 40px;
    border-radius: 15px;
    -webkit-box-shadow: 0px 14px 28px rgb(134 151 168 / 8%);
    box-shadow: opx 14px 28px rgb(134 151 168 / 8%);
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    border: 1px solid #666362;
    box-sizing: border-box;
}
.project-box:first-child {
    margin-top: 0;
  }


.project-box, .project-image-container{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 350px;
    flex: 0 0 350px;
    border-radius: 10px;
    height: auto;
}

.project-box .project-image-container img {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #666362;
  }

.project-box, .project-description-container{
    -webkit-box-flex: 0;
    -ms-flex: 0 1 calc(100% 350px);
    flex: 0 1 calc(100% - 350px);
    margin-left: 25px;
    margin-right: 25px;
}

.project-box .project-description-container ul {
    list-style: disc inside;
    font-size: 0.9rem;
    line-height: 1.3;
    letter-spacing: 1px;
    margin-top: 20px;
  }
  .project-box .project-description-container ul li:not(:first-child) {
    margin-top: 10px;
  }
  .project-box .project-description-container p {
    font-size: 0.9rem;
    margin-top: 20px;
  }

  .project-box .project-description-container h4 {
    font-family: "Jura", "Lato";
    font-size: 1rem;
    margin-top: 7px;
    letter-spacing: 1px;
    line-height: 1.2;
  }

  .project-box .project-description-container h4 span {
    color: #a2faa3;
    display: inline-block;
    padding: 0 5px;
  }
  .project-box .project-description-container .project-links a {
    font-size: 1.1rem;
    margin-right: 20px;
    color: #a2faa3;
    display: inline-block;
    text-decoration: underline;
  }

  .project-box .project-description-container .project-links a:focus {
    border: 2px solid #a2faa3;
  }
  


  .project-box .project-description-container .project-links {
    margin-top: 50px;
  }


.project-box .project-description-container h3{
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
    letter-spacing: 1px;
    font-size: x-large;

}



/* SKILLS AND TOOLS PAGE Styling */
.speciality-section{
    text-align: center;
}
.speciality-section section{
    height: 80%;
}

.speciality-section section div{
    height: 100%;
}
.skills-grid{
    display: grid;
   list-style: none;
    grid-template-columns: repeat(5, minmax(70px, 1fr)); 
    justify-items: center;
    margin-left: 20%;
    margin-right: 20%;
    margin-top: 0%;
    margin-bottom: 0%;
    padding-left: 0;
}
.skills-grid li{
    background-color:#36454F;
    border-radius: 15px;
    width: fit-content;
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    -webkit-box-shadow: 0px 4px 8px rgba(54, 69, 79, 10%);
    box-shadow: 0px 4px 8px rgba(54, 69, 79, 10%);
    border: 1px solid rgb(54, 69, 79);
    box-sizing: border-box;
    margin-bottom: 1em;
 }

.skills-grid li div{
    text-align: center;
    display: block;
}

.skills-grid li div img{
    width: 100%;
    padding-top: 5px;
}
.skills-grid li div p{
    font-family: "Jura", "Lato";
    color: #FFFFFF;
}
.skills-grid li:hover{
    transition: 0.2s;
    transform: scale(0.9);
}

.skills-grid li{
    width: -webkit-fill-available;
    margin: 1em;
}

/* Say hi button font under SKILLS AND TOOLS*/
button{
    align-self: center;
    background-color: #F9DC68;
    color: #202020;
    font-family: "Jura", "Lato";
    font-size: x-large;
    height: 2em;
    width: 7.5em;
    border-radius: 15px;
    color: #36454F;
    border: 0px;
}

#say-hi-button:hover{
        transition: 0.2s;
        transform: scale(0.95);
}



/* About Page Styling */

#profile-image{
    width: inherit;
}


.profile-alignment{
    display: flex;
    flex-direction: row;
}

#profile-name{
    font-family: Raleway;
    margin-top: 0%;
    margin-bottom: 5%;
    width: 100%;
}

.link-icons:hover{
    transition: 0.4s;
    transform: scale(0.9);
}

#about .vertical-flex .paragraph-font{
    font-family: "Jura";
    font-size: 1.3rem;
    line-height: 2rem;
    padding-top: 0%;
    padding: 5%;
}


/* Contact Page Styling */



.margin-ratio{
    display: flex;
    flex-direction: row;
    width: 90%;
    margin: 0 auto;
    margin-top: 5%;
}

.form-format{
    width: 100%;

    box-sizing: border-box;
    pointer-events: auto;
    font-family: karla, sans-serif;
}

.form-format form{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 0em;

}

form input, form textarea{
    background-color: #D8D8D8;
    padding: 10px;
    margin: 10px 0;
    border: 2px solid #F9DC68;
    border-radius: 5px;
    resize: none;
}

form textarea{
    height: 10em;
}


form input:focus ,form textarea:focus{
    outline: #282727;
    background-color: #FFFFFF;
    transition: background .3s;
}


#message{
    height: 50%;
}

input::-webkit-input-placeholder {
    text-align: left;

}


button, input{
    line-height: normal;
}

input, select, textarea{
    font-family: inherit;
    font-size: 100%;
    margin: 0%;
}


.visually-hidden{
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;
    white-space: nowrap;
    -webkit-clip-path: inset(100%);
    clip-path: inset(100%);
    clip: rect(0 0 0);
    overflow: hidden;
}

.margin-ratio .form-format p{
    margin-left: 5%;
    border-left-style:double;
    border-left-color: white;

}

.margin-ratio .form-format p{
    padding-top: 0%;
    padding-left: 5%;
    padding-right: 5%;
}


/* FOOTER BAR Styling */
.footer-bar{
   
    display: flex;
    background-color: #1A1A1A;
    overflow: hidden;
    width: 100%;
    height: max-content;
    bottom: 0; 
    flex-direction: column;
}
.footer-bar div{
    align-self: center;
}

.footer-links{
    padding: 10px;
    background-color: #1A1A1A;
    
}

.footer-links a{
    padding: 5px;
    color: #e1ae36;
}
.footer-font{
    color: #FFFFFF;
    letter-spacing: 0.2em;
    font-family: "Lato";
}












/* For tablets: */
    
@media only screen and (max-width:800px) {
    /* Individual Page Titles */
    #main-name{
        font-size: 400%;
    }
    
    
    
    .title-text{
        font-family: Lato;
        color: azure;
        font-weight: bold;
        font-size: 400%;
        align-self: center;
    }
    

 }













/* For mobile phones: */
@media only screen and (max-width: 600px) {
    /* Individual Page Titles */
    .title-text{
        font-family: Lato;
        color: #e1ae36;
        font-weight: bold;
        font-size: 300%;
        align-self: center;
        margin-top: 0%;
    }
    
/* Landing Page */
.topnav{
    align-self: center;
}

.topnav a{
    display: none;
  }
  .topnav a.icon {
    float: right;
    display: block;
  }
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
  }
  .topnav.responsive {float: none;}
  .topnav.responsive  {position: relative;}
  .topnav.responsive {
    display: block;
    width: 80%;
    text-align: left;
  }

/* Title Name */

#main-name{
    font-family: "Special Elite";
    font-display:inherit;
    font-size: 500%;
    color: #e1ae36;
    text-align: center;
    margin-bottom: 0%;
}

/* Sub-title Name */
#sub-name{
    font-family: "Lato";
    font-display:inherit;
    font-size: 250%;
    color: white;
    text-align: center;
    margin-bottom: 10%;
}

.main-content{
    display: block;
    margin-left: 2%;
    margin-right: 2%;
    height: 100%;
    width: auto;
    margin-top: 10%;
}
.secondary-content{
    width: inherit;
    align-items: center;
    display: flex;
    justify-content:space-evenly;
}
.main-content p{
    margin-bottom: 5%;
}




    /* What I Do */
    #whatido{
        display: block;
        height: max-content;
        width: auto;
    }
    .speciality-section{
        padding:5%;
        display: block;
        height: max-content;
    }
    .container-content{
        display: flex;
        flex-direction: column;
        height: inherit;
        width: inherit;
    }
    .container-content div{
        background-color: #282727;
        margin-left: 0%;
        margin-right: 0%;
        margin-bottom: 20px;
        width: 100%;
        padding: 5px;
    }
    .container img{
        width: 40%;
        height: auto;
    }
    .container{
        width: 80%;
        height: 90%;
    }
    .container p{
        padding: 5%;
    }

    .container:hover{
        transition: 0.2s;
        transform: scale(0.9);
    }


    /* Projects */
    .project-section{
        background-color:#282727;
        display: flex;
        flex-direction: column;
    }
    
    .project-box{
        background-color: #282727;
        display: flex;
        flex-direction: column;
        margin-left: 15px;
        margin-right: 15px;
     }

     .project-image-container{
        height: inherit;
        width: auto;
     }

    .project-description-container{
        text-align: left;
    }

    .project-description-container h3{
        padding-top: 10px;
        padding-bottom: 20px;
        text-align: center;
    }
    .project-links{
        text-align: center;
    }

    .project-image-container{
        flex: auto;
    }

    .project-box .project-description-container ul{
        list-style: disc;
        padding-left: 0%;
    }

    /* Skills and Tools */

    .skills-grid{
        grid-template-columns: repeat(3, minmax(70px, 1fr)); 
        margin-left: 5%;
        margin-right: 5%;
    }  

    
    /* Say hi button font under SKILLS AND TOOLS*/
    button{
        width: 40%;
        height: 5%;
        align-self: center;
        background-color: #F9DC68;
        color: #202020;
        font-size: x-large;
        font-family: "Jura", "Lato";
        height: max-content;
        border-radius: 15px;
        color: #36454F;
    }
    /* About */
    #about{
        display: block;
        width: 100%;
        height: max-content;
        text-align: center;
    }

    .vertical-flex{
        margin-left: 0%;
    }

    .profile-alignment{
        display: block;
    }

    #about .vertical-flex .paragraph-font{
        font-size: 1rem;
        padding-top: 15%;
        padding-bottom: 5%;
    }
    


    #profile-image{
        width: 80%;
    }
    
    .paragraph-font{
        font-size: 1rem;
        letter-spacing: 0.1em;
        padding-left: 0px;
        padding-right: 0px;
    }
    div .vertical-flex{
        padding-right: 0%;
    }
    
    /* Contact */

    .form-format{
        padding-top: 10%;
    }

    .form-format .paragraph-font{
        padding-top: 10%;
        padding-bottom: 10%;
        font-size: larger;
    }

    .margin-ratio{
        display: block;
    }

    .margin-ratio .form-format p{
        margin-left: 0%;
        border-left-style:none;
    }


    /* footer styling*/
   
    .footer-font{
        padding-left: 5%;
        padding-right: 5%;
    }
    #about{
        padding-bottom: 5px;
    }


}
