body{
    font-family: "Poppins", sans-serif;
    
}
section{
    background-color: white; 
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
:root{
    --main-color: rgb(210, 115, 81);
}
header{
    position: fixed ;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.6s;
    height: 80px;
    padding: 5px 80px;
    z-index: 100000;
    background-color: var(--main-color);
}
.logo{
    margin-top: 4px;
    
    height: 120px;
    width: 180px;
    
}
header ul{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
header ul li{
    position: relative;
    list-style: none;
}
header ul li a{
    position: relative;
    margin: 0 15px;
    text-decoration: none;
    color:#fff;
    letter-spacing: 2px;
    font-weight: 500px;
    transition: 0.6s;
}
header ul li a:hover {
    color: #1c1d25;
}
.hero{
    background-color: #1c1d25;
    height: 100vh;
    color: white;
    font-size: 40px;
}
footer{
    margin-top: 100px;
    height: 150px;
    background-color: #1c1d25;
    color: rgb(185, 178, 178);
    text-align: center;
    padding: 80px;
}

h1{
    font-size: 80px;
    margin: 0;
}
h1 span{
    color: var(--main-color);
}
h2{
    font-size: 50px;
    color: var(--main-color);
    text-align: center;
}
p{
    margin: 0;
    font-weight: 300;
    font-size: 30px;
}
.subtext{
    font-size: 15px;
    font-weight: 300;
}
.hero-area{
    display: flex;
    height: 100%;
    justify-content: space-between;
    align-items: center;
}
.hero-text{
    margin-left: 80px;
    margin-bottom: 100px;
    margin-top: 290px;
    
}

.button{
    width: 200px;
    height: 50px;
    border-radius: 25px;
    background-color: var(--main-color);
    text-align: center;
    font-weight: 600;
    font-size: 30px;
    padding-top: 5px;
    margin-top: 15px;
   
}


.button:hover{
    background-color: #ef744b;
}

.button:active{
    background-color: #a9a9a9;
    color: #808080;
}
.socials{
    margin-top: 150px;
    padding-bottom: 100px;
    margin-left: 1750px;
}
.information p {
    margin-top: 30px;
    font-size: 30px;
    padding: 10px;
    
    
}
/* .logo{
    height: 80px;
    margin: 30px;
} */

.social{
    margin: 25px;
   
}
.sub-section{

    display: flex;
    justify-content: space-between;
    padding: 100px;
   
}
.sub-section-alternative{
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-bottom: 80px;

}
.sub-section-alternative h2{
    margin-top: 80px;
}
.headshot{
    width: 300px;
}
.headshot-container{

    display: flex;
    align-items: center;
}

.project-card{
    width: 300px;
    height: 500px;
    box-shadow: 5px 5px 20px rgb(197, 190, 190);
    margin: 10px;
    transition: 0.5s

}
.project-container{
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-left: 160px;
    width: 80%;
    margin-bottom: 60px;
    
}

.project-image{
    margin-top: 30px;
    width: 80%;
    display: block;
    align-items: center;
    margin-left: 30px;
    border-radius: 40px;
    
}
.project-card:hover {
    transform: scale(1.2);
    
}
.project-card h3{
    margin-top: 30px;
}
.subtext{
    margin-top: 10px;
}
html{
    scroll-behavior: smooth;
}
hr{
 
    margin-left: 20px;
    margin-right: 20px;
}
.project-link{
    text-decoration: none;
    color: var(--main-color)
}
a{
    text-decoration: none;
    color: white;
}
.hamburger{
    display: none;
}
.hamburger:focus{
    outline: 0;
}
.container{
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px 100px;
}


.contact-box{
	max-width: 850px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	justify-content: center;
	align-items: center;
	text-align: center;
	background-color: #fff;
	box-shadow: 0px 0px 19px 5px rgba(0,0,0,0.19);
}

.left{
	background: url("./images/contact.png") no-repeat center;
	background-size: cover;
	height: 100%;
}

.right{
	padding: 25px 40px;
}

h2{
	position: relative;
	padding: 0 0 10px;
	margin-bottom: 10px;
}

h2:after{
	content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    height: 4px;
    width: 50px;
    border-radius: 2px;
    background-color: #2ecc71;
}

.field{
	width: 100%;
	border: 2px solid rgba(0, 0, 0, 0);
	outline: none;
	background-color: rgba(230, 230, 230, 0.6);
	padding: 0.5rem 1rem;
	font-size: 1.1rem;
	margin-bottom: 22px;
	transition: .3s;
}

.field:hover{
	background-color: rgba(0, 0, 0, 0.1);
}

textarea{
	min-height: 150px;
}

.btn{
	width: 100%;
	padding: 0.5rem 1rem;
	background-color: var(--main-color);
	color: #fff;
	font-size: 1.1rem;
	border: none;
	outline: none;
	cursor: pointer;
	transition: .3s;
}

.btn:hover{
    background-color: #27ae60;
}

.field:focus{
    border: 2px solid rgba(30,85,250,0.47);
    background-color: #fff;
}

.text-box {
    color: var(--main-color);
    position: absolute;
    bottom: 10%;
    margin-left: 120px;
}
.text-box p{
    font-size: 50px;
    font-weight: 600;
    color: var(--main-color);
}
.text-box h1{
    font-size: 190px ;
    line-height: 160px;
    margin-left: 40px;
    color: transparent;
    -webkit-text-stroke: 4px var(--main-color);
    background: url(./images/back.png);
    -webkit-background-clip: text;
    background-position: 0 0;
    animation: back 20s linear infinite;

}
@keyframes back{
    100%{
        background-position: 2000px 0;
    }
}
.text-box h3{
    font-size: 40px ;
    font-weight: 600;
    margin-top: 20px;
    color: var(--main-color);
}
.icon{
    
    display: flex;
    justify-content: space-between;
    padding: 80px;
} 

.skill p{
    
    font-size: 20px;
    font-weight: 600;
    padding: 0%;
    text-align: center;
    color: #3d3e43;
    
}
.skill{
    background-color:rgb(235, 235, 235);
    padding: 10px 40px;
    border-radius: 20px;
    margin-top: 20px;
    border-color: var(--main-color);
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: space-between;
    box-shadow: 5px 5px 10px rgb(197, 190, 190);
}

.skill:hover {
    background-color: rgb(199, 199, 199);
    transform: scale(1.2);
    transition: 0.5s;
}
.skill img:hover{
    transform: scale(1.2);
    transition: 0.5s;
}

@media screen and (max-width: 880px){
	.contact-box{
		grid-template-columns: 1fr;
	}
	.left{
		height: 200px;
	}
}

@media only screen and (max-width: 1000px){
    .hamburger{
        display: block;
        border: 0;
        background-color: transparent;
        color: white;
        font-size: 30px;
        margin: 20px;
        align-self: flex-end;
    }
    h1{
        font-size: 40px;
        margin: 0;
    }
    h2{
        font-size: 30px;
    }
    p{
        margin: 0;
        font-weight: 300;
        font-size: 20px;
    }
    .button{
        width: 70px;
        height: 45px;
        border-radius: 15px;
        background-color: coral;
        text-align: center;
        font-weight: 300;
        font-size: 15px;
        padding-top: 5px;
        margin-top: 10px;
    }
    ul{
        display: none;
        background-color: #2b2c38;
        margin: 0px;
    }
    ul.show{
        display: block;
    }
    .headshot{
        width: 190px;
    }
    .sub-section{
        
        padding: 10px;
    }
    nav{
        display: flex;
        flex-direction: column-reverse;
        background-color: #2b2c38;
    }
    .logo{
        display: none;
    }
    .project-container{
        display: flex;
        justify-content: space-around
    }
}