@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@100;200;300;400;500;600;700&display=swap');


body{
    background-color: rgb(64, 104, 130);
    color: rgb(255, 255, 255);
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
}
header{
    display: flex;
    justify-content: center;
}

header ul{
    display: flex;
    padding: 10px 10px 50px 10px;
}

li{
    list-style: none;
    margin: 5px 10px;
}

h1{
    font-size: 160px;
    font-weight: 700;
    margin: 0;
}
h2{
    margin: 3px;
    font-weight: 300;
    text-align: center;
}

h3{
    margin: 0;
    font-weight: 300;
}

section{
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer{
    position: fixed;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100vw;
    /*background-color: rgb(26, 55, 77);*/
}
footer ul{
    display: flex;
    padding: 30px;
}

a{
    text-decoration: none;
    color: rgb(255, 255, 255);
}

.hero-section{
    margin-top: 17vh;
    text-align: center;
}

a:hover{
    color:rgb(255, 100, 100)
}

.light-text{
    font-weight: 100;
}
.options{
    display: flex;
}
.options a{
    margin: 10px;
}
.socials{
    width: 100px;
    height: 320px;
    background-color: rgb(105, 152,171);
    border-radius: 30px 0 0 30px;
    position: fixed;
    right: 0;
    top: 27vh;
}
.social{
    width: 100%;
    height: 33%;
}
.social svg{
    fill: rgb(255, 255, 255);
}
.subtitle{
    font-size: 50px;
}
.wave{
    fill: rgb(26, 55, 77);
    width: 100vw;
    height: 45vh;
    position: fixed;
    bottom: 0;
}

/*sub-pages-general*/
.sub-pages-footer{
    position: fixed;
}

/*Work page*/

.work-details{
    width: 50%;

}
.work-details td{
    padding: 30px;
}

/*About-me page*/

.about-me{
    width: 50%;
    text-align: center;
}
.about-me img{
    height: 150px;
    border-radius: 50%;
    margin: 40px 10px 10px 10px;
}

/*Contact page*/
.form-submit{
    width: 50%;
}
.form-submit form{
    width: 100%;
}
.form-submit .form-row{
    display: flex;
    justify-content: space-between;
}
.form-row .form-control{
    width: 50%;
    /*border: none;*/
    font-size: 20px;
    font-family: 'Josefin Sans', sans-serif;
    padding: 20px 0;
}
.form-row .form-control:focus,
.form-submit textarea:focus{
    outline: 0;
    background-color: rgb(177,208,224);
}
.form-submit textarea{
    font-family: 'Josefin Sans', sans-serif;
    width: 100%;
    border: none;
    resize: none;
    margin-top: 5px;
    font-size: 20px;
    padding: 20px 0;
}
form button{
    width: 100%;
    background-color: rgb(26,55,77);
    color: rgb(255,255,255);
    font-family: 'Josefin Sans', sans-serif;
    font-size: 20px;
    border: none;
    padding: 20px;
}

/*thank you page*/
.thank-you{


}

@media only screen and (max-width:600px) {

    .socials{
        display: none;
    }

    .work-details{
        width: 80%;
    }
    .work-details td{
        padding: 5px;
    }
    .sub-pages-footer{
        position: relative;
    }
    .form-submit{
        width: 80%;
    }
    .form-submit .form-row{
        display: flex;
        flex-direction: column;
    }
    .form-row .form-control{
        width: 100%;
        margin-top: 5px;
    }

}