@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body{
    font-family: "montserrat", Arial, sans-serif;
}

.container{
    width: 100%;
    text-align: center;
}

.background-midnight{
    background-color: #2c3e50;
}

.background-wetasphalt{
    background-color: #34495e;
}

.background-white{
    background-color: #fff;
}

.background-purple{
    background-color: #3c444d;
}

.color-white{
    color: #fff;
}

.color-midnight{
    color: #2c3e50;
}

.container-flex{
    display: flex;
}

.direction-column{
    flex-direction: column;
}

.justify-around{
    justify-content: space-around;
}

.justify-center{
    justify-content: center;
}

.justify-between{
    justify-content: space-between;
}

.justify-end{
    justify-content: flex-end;
}

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

.align-start{
    align-items: flex-start;
}

.flex-wrap{
    flex-wrap: wrap;
}

.space-10px{
    margin: 15px;
}

.padding-section{
    padding: 3% 4%;
}

.container-title-subtitle{
    max-width: 80%;
    margin: 0 auto;
    text-align: center;
}

.title-section{
    font-size: 25px;
    font-weight: bold;
    line-height: 25px;
    margin-bottom: 10px;
}

.subtitle-section{
    font-weight: 500;
    letter-spacing: 100;
}

.img{
    width: 100%;
    height: 100%;
}

.text{
    line-height: 28px;
    margin-bottom: 5px;
    text-indent: 15px;
    font-size: 18px;
}

/* specify header */

    .header{
        position: relative;
        width: 79%;
        float: right;
    }

    .drop:hover > .dropdown{
        display: block;
    }

    .dropdown{
        margin: 0px;
        padding: 0px;
        display: none;
        position: absolute;
        border-radius: 4px;
        box-shadow: 2px 2px 50px rgba(0, 0, 0, 0.233);
    }

    .dropdown li{
        padding: 10px;
    }

    .dropdown li:last-child{
        border-bottom-left-radius: 4px;
        border-bottom-right-radius: 4px;
    }

    .dropdown li:hover{
        background-color: #293847;
    }
    
    .menu{
        width: 78%;
        padding: 15px 0px;
    }

/* end specify header */

/* vertical section */

    .vertical_section{
        display: flex;
        justify-content: center;
        height: 100vh;
        width: 21%;
        position: fixed;
        top: 0;
        left: 0;
    }

    .container-me{
        width: auto;
        height: 50vh;
        margin-top: 80px;
        text-align: center;
    }

    .about-me{
        width: 200px;
        height: 200px; 
        margin: 0 auto; 
    }

    .img{
        width: 100%;
        height: 100%;
        border-radius: 100%; 
    }

    .title-vertical-section{
        font-size: 20px;
        font-weight: 600;
        line-height: auto;
        margin: 15px 0px;
    }
    
    .subtitle-vertical-section{
        font-size: 16px;
        font-weight: 400;
        letter-spacing: 100;
    }

    .icons{
        position: absolute;
        bottom: 20px;
    }

    .icon{
        margin: 10px;
        width: auto;
        text-decoration: none;
    }

    .icon:hover i{
        color: rgb(9, 15, 105);
    }

    .icon i{
        font-size: 22px;
        color: #fff;
    }

/* end vertical section */