:root{
    color: #001425;
    font-size: 18px;
}

html {
    scroll-behavior: smooth;
}

body{
    background-color: #96d8d8;
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
}

.container{
    max-width: 900px;
    margin: auto;
}


/* nav */
nav{
    background-color: #001425;
    display: flex;
    justify-content:flex-end;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin:0;
}

nav ul li{
    display: inline-block;
}

nav ul li a{
    padding: 10px 20px;
    background-color: #001425;
    display: block;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition-duration: 0.1s;
    text-align: center;
    font-weight: 700;
}

nav ul li a:hover{
    background-color: #96d8d8;
    color: #001425;
}


/* Main content */
.intro{
    margin: 70px 0px 0px 0px;
}

.intro .right, .intro .left{
    width: 50%;
    float: left;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    padding: 0px 20px;
}

.intro .left .intro-header{
    font-size: 70px;
    text-align: right;
    margin-block-start: 0;
    margin-block-end: 0;
    margin-top: 30px;
}

section{
    padding: 20px 15px;
}

section.gap{
    margin: 100px 0;
}

section:not(.intro) .container h1{
    text-align: center;
    font-size: 40px;
}

section .styled-container{
    max-width: 800px;
    padding: 15px;
    margin: auto;
    background-color: white;
    -webkit-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
    box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
}

.divider{
    margin:auto;
    border: 0.5px solid #1b262c;
    max-width: 600px;
}

/* Projects */
.project-item{

}

.project-item .title{
    margin: 0;
}

.project-item .technologies{
    font-size: 14px;
    font-weight: 700;
    color: #3A5F7E;
    margin-top: 0;
}

.project-item .project-icons{
    font-size: 30px;
    text-align: center;
}

.project-item .project-icons a{
    padding: 5px 20px;
    margin: 5px 10px;
    color: #001425;
    transition-duration: 0.1s;
    text-decoration: none;
    border: 2px solid #001425;
    border-radius: 15px;
    display: inline-block;
}

.project-item .project-icons a:hover{
    background-color: #001425;
    color: #96d8d8;
}

.project-item .project-icons a i{
    margin-right: 10px;
}

/* Contact styling */
.contact .contact-content .contact-icons{
    text-align: center;
}

.contact .contact-content .contact-icons a{
    font-size: 30px;
    padding: 5px 20px;
    margin: 5px 10px;
    border: 2px solid #001425;
    border-radius: 15px;
    color: #001425;
    transition-duration: 0.1s;
    text-decoration: none;
    display: inline-block;
}

.contact .contact-content .contact-icons a:hover{
    background-color: #001425;
    color: #96d8d8;
}

.contact .contact-content .contact-icons a i{
    margin-right: 10px;
}

.contact .contact-content .contact-info{
    line-height: 0.5;
    font-size: 30px;
}


/* Footer */
footer{
    height: 40px;
    background-color: #001425;
}

/* General rules */
.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

.text-center{
    text-align: center;
}

.text-small{
    font-size: 22px;
    color: #333333;
}