@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600&display=swap');
html {
    scroll-behavior: smooth;
}
body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #3f3f3f;
    font-family: 'Raleway', sans-serif;
}
ul{
    list-style: none;
}
a{
    text-decoration: none;
}
button{
    outline: none;
    border: none;
}
input{
    outline: none;
    border: none;
}
.logo img {
    width: 140px;
}

nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 5px 10px 30px rgb(0, 0, 0, 0.2);
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 1;
    background-color: #3f3f3f;
}

nav ul {
    display: flex;
}

nav ul li a {
    font-family: 'Raleway', sans-serif;
    height: 40px;
    line-height: 43px;
    margin: 3px;
    color: #fff;
    padding: 0px 17px;
    display: flex;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.6s ease;
}

nav ul li a:hover {
    border-bottom: 2px solid #00e9a5;
    box-shadow: 5px 10px 30px rgb(0, 255, 128, 0.4);
}

.active {
    border-bottom: 2px solid #00e9a5;
    box-shadow: 5px 10px 30px rgb(0, 255, 128, 0.4);
}

.fa {
    margin-left: 30px;
    padding-top: 10px;
    width: 10px;
    text-align: center;
    height: 30px;
  }

  .fa-facebook {
    background: #3B5998;
    color: white;
  }

  .fa-linkedin {
    background: #007bb5;
    color: white;
  }

  .fa-instagram {
    background: #9c076b;
    color: white;
  }
  
  .fa-github {
    background-color: #292525;
  }

/*NAV*/
#header {
    width: 100%;
    height: 100vh;
}

.header-heading {
    width: 500px;
    position: absolute;
    transform: translate(-18%, -50%);
    left: 18%;
    top: 55%;
    color: white;
    justify-content: space-around;
}

.infoCont {
    height: 65vh;
    width: 80vw;
    margin: 144px auto;
    display: flex;
    justify-content: space-around;
}

.devImg {
    height: 65vh;
}

.devInfo {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.container {
    display: flex;
}

.header-heading h1 {
    font-size: 44px;
    margin: 0;
    letter-spacing: 3px;
}

.header-heading h1 span {
    color: #00e9a5;
}

.header-heading p {
    color: rgb(238, 230, 230);
}

.header-btn {
    width: 120px;
    height: 40px;
    justify-content: center;
    display: flex;
    align-items: center;
    background-color: #00e9a5;
    color: #000;
    margin-top: 15px;
    border-radius: 10px;
    box-shadow: 5px 10px 30px rgb(0, 255, 128, 0.4);
    transition: 0.6s ease-in-out;
}

.header-btn:hover {
    background-color: #00e965;
}

.logo img{
    height: 60px;
}

#work {
    width: 100%;
    height: 100vh;
    display: flex;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 40px 0px;
    background-color: #000;
}

.work-container{
    display: flex;
    align-items: center;
    justify-content: center;
}

.work-box{
    background-color: white;
    width: 650px;
    height: 520px;
    margin: 20px;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
}

.work-img{
    width: 100%;
    height: 60%;
}

.work-img img {
    width: 100%;
    height: 100%;
}

.work-text {
    width: 100%;
    height: 45%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: auto;
}

.work-text h4{
    margin-bottom: 0%;
    padding-bottom: 0%;
    align-items: center;
}

.work-text p {
    text-align: center;
    margin-left: 20px;
    margin-right: 20px;
    padding-left: 20px;
    padding-right: 20px;
}

.work-heading {
    text-align: center;
    color: white;
    margin: 20px 0px;
}

.work-heading h1 {
    font-size: 2.5rem;
}

#contact {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 50px 0px;
    height: 80vh;
}

#contact form{
    width: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#contact form input, #contact form textarea{
    width: 100%;
    height: 50px;
    margin: 5px 0px;
    padding: 10px;
    background-color: #fff;
    color: #1e1e1e;
    border-radius: 5px;
}

#contact form textarea{
    height: 150px;
}

#contact form input[type="submit"] {
    height: 50px;
    background-color: #00e965;
    color: #1e1e1e;
    text-transform: uppercase;
    
}