/* for RESUME and ABOUT - > Home Page Styling */
body{
    font-family: 'Trebuchet MS', Arial, sans-serif;
    margin:0;
    padding:0;
    background-color:rgb(43, 38, 66);
}

/* Top Menu */
nav {
    background-color: tomato;
    /*
    WE WANT TO EVENTUALLY MAKE IT FIXED
    position: fixed;
    */
}

nav>div{
    height: 60px;
    width: 80%;
    margin: auto;
}

nav>div>ul {
    height:100%;
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    display: flex;
    justify-content: space-around;
}
nav>div>ul>li a {
    display: block;
    color: white;
    text-align: center;
    padding:16px;
    text-decoration: none;
    font-weight: bold;
    height: 100%;
}
nav>div>ul>li:nth-child(1){
    flex-grow: 1;
}

/* Socials */
.socials {
    background-color: rgb(43, 38, 66);
    text-align: center;
}
.socials a{
    border-radius: 5px;
}
a{
    color:rgb(243, 243, 243);
    text-decoration:none;
    padding-left: 20px;
    padding-right:20px;
}

a:hover{
    color:rgb(248, 78, 36);
    background-color: rgb(251, 251, 253);
}

/* Resume */
#resume_social{
    padding-top: 15px;
    font-size: 2.5em;
}
.resume{
    position: relative;
    /* used to be bottom 56.25% and top 25px */
    padding-bottom: 100%;
    padding-top: 0%;
    height: 0;
}
.resume iframe {
	position: absolute;
	top: 0px;
	left: 50%;
    transform: translate(-50%, 0);
	width: 62%;
	height: 83%;
}
.resume-wrap{
    border-style : solid;
    border-color:white;
}
nav a{
    color:rgb(243, 243, 243);
    text-decoration:none;
}

nav a:hover{
    color:rgb(248, 78, 36);
    background-color: rgb(251, 251, 253);
}

.moving-title{
    animation: type 3s steps(20);
    overflow:hidden;
    white-space: nowrap;
    font-family: consolas;
    border-right:4px solid white;
    width: 20ch;
    color:white;
    margin-left: auto;
    margin-right:auto;
}
@keyframes type{
    0%{
        width:0ch;
    }
    100%{
        width:20ch;
    }
}
/* Main Body Styling */

main .content-wrapper{
    padding: 30px 40px 0 40px;
    color:white;
}

hr{
    width: 100%;
    height: 2px;
    color: white;
    background-color: white;
    margin-right: 100%;
}

/* Main Intro */
.intro-wrapper{
    color:white;
    border-style: none none dashed none;
    border-color:white;
}
.intro hr{
    margin-right: auto;
    width: 50%;
}
.intro p{
    margin:auto 10%;
}
.intro{
    text-align:center;
    /*margin: 100px auto 100px auto;*/
    height: 25em;   
    background-image: url('../images/banner.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}

.intro div{
    background-color:rgba(43, 38, 66,.9);
    height :100%;
    padding-top: 10%
}
/* Main Projects */

h2 {
    font-size: 2em;
}
.gitlink{
    color:white;
    text-decoration: none;
    max-width: 80px;
    max-height: 20px;
    width: 100%;
    padding:6px 20px;
    margin: 0;
    border-radius: 5px;
    background: #39CCCC;
    text-align: center;
    white-space: nowrap;
}
.projectwrap{
    display:flex;
    padding:40px 0;
}
@media only screen and (max-device-width:750px){
    .projectwrap{
        flex-wrap: wrap;
        justify-content: center;
    }
    .projectimg{
        border-style: none !important;
        padding-bottom: 10%;
    }
}

.projectimg{
    height: 100%;
    max-height: none;
    margin: 0 60px 0 0;
    border-style: solid;
    border-color: white;
    border-radius: 5px;
    width: 80%;
}
.projecttext{
    background-color:tomato;
    display:flex;
    flex-direction: column;
    padding: 5px 3px 20px 20px;
    border-style: solid;
    border-radius: 25px;
}
.projectdesc{
    padding-right:1em;
    padding-bottom: 2em;
}
.projectmeta{
    display:flex;   
}
.projecttech{
    margin: 0;
    padding: 0 10px 0 0;
}
.projecttech h4, .projecttech p{
    margin-top:2px;
}
.projectlink{
    display: flex;
    flex: 1;
    width: 100%;
    margin: 0 20px 15px 0;
    justify-content: flex-end;
}
/* Skills */
h3{
    font-size: 1.75em;
}
.my_skills{
    text-align:center;
    margin: 100px auto 100px auto;
}
#skills_line{
    margin-right: auto;
    width: 50%;
}
.skill{
    display:flex;
    margin: 10px 0px;
}
.skill-name{
    display:flex;
    align-items: center;
    text-align:center;
    justify-content: center;
    width: 30%;
    color:rgb(104, 63, 179);
    background-color: rgb(123, 218, 235);
    word-break:break-all;
}
.skill-description{
    padding: 10px 50px ;
    width:70%;
    justify-content: center;
    color: rgb(255, 255, 255);
    font-size: 1.1em;
    background-color:rgb(129, 101, 182);
}
.one{
    background-color: rgb(123, 218, 235);
}
.two{
    background-color:rgb(129, 101, 182);
}

/* Education */
#edu_link{
    text-decoration: none;
    color:rgb(131, 194, 194);
}

.bottom{
    margin-bottom:10%;
    margin-top:10%;
}