/* 
    colors
    dark: #2b2d42
    medium: #8d99ae
    light #edf2f4
    light turq #83c5be
    yellowish white: #fcf6ea
*/

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Roboto", serif;
    transition: 0.5s;
}

html {
    background-color: #2b2d42;
}

.roboto-thin {
    font-family: "Roboto", serif;
    font-weight: 100;
    font-style: normal;
}

.roboto-regular {
    font-family: "Roboto", serif;
    font-weight: 400;
    font-style: normal;
}

.roboto-bold {
    font-family: "Roboto", serif;
    font-weight: 700;
    font-style: normal;
}

/* header */

header {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 5%;
    justify-content: space-between;
    align-items: center;
    padding: 3%;
    position: fixed;
    background-color: #2b2d42;
    color: #83c5be;
    z-index: 99;
    /* border: 1px solid red; */
}

#header-image-container {
    background-color: #83c5be;
    color: #2b2d42;
    padding: 1%;
    /* border: 2px solid #edf2f4; */
    box-sizing: border-box;
    border: 2px solid #2b2d42;
    border-radius: 50%;
    text-decoration: none;
}

#header-image-container:hover {
    background-color: #2b2d42;
    color: #83c5be;
    border: 2px solid #83c5be;
}

header #contact {
    border: 2px solid #83c5be;
    padding: 1%;
    border-radius: 20px;
}

#contact:hover {
    background-color: #83c5be;
    color: #2b2d42;
}

#header-menu div {
    width: 30%;
    display: flex;
    justify-content: center;
    /* border: 1px solid red; */
}

@media (min-width: 768px) {
    #header-menu {
        width: 30%;
    }

    #header-image-container,
    header #contact {
        /* font-size: 150%; */
        padding: 1%;
    }
}

@media (min-width: 1025px) {
    #header-menu {
        width: 20%;
    }

    #header-image-container,
    header #contact {
        /* font-size: 100%; */
        padding: 1%;
    }
}

/* large screen adjust */

#large-screen-adjust {
    display: flex;
    flex-direction: column;
}

@media (min-width: 1025px) {
    #large-screen-adjust {
        flex-direction: row;
    }
}


/* top section */

#top-section-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#top-section {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    position: relative;
    top: 50px;
    width: 85%;
    height: 300px;
    color: #fcf6ea;
    letter-spacing: 2px;
    padding: 3%;
    margin: 1%;
}

#top-section h1 {
    display: flex;
    justify-content: center;
    color: #fcf6ea;
    letter-spacing: 4px;
}

#top-section p {
    display: flex;
    color: #83c5be;
    justify-content: center;
    font-size: 17px;
}

#top-section-container img {
    width: 50%;
    position: relative;
    top: 100px;
}

@media (min-width: 768px) {
    #top-section h1 {
        font-size: 35px;
    }

    #top-section p {
        font-size: 25px;
    }

    #top-section-container img {
        width: 25%;
        top: 230px;
    }
}

@media (min-width: 1025px) {
    #top-section-container img {
        width: 25%;
        top: 130px;
    }
}

/* intro sec */
#intro-container {
    width: 100%;
    height: fit-content;
    background-color: #fcf6ea;
    color: #2b2d42;
    position: relative;
    top: 150px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    padding: 12% 10%;
    /* z-index: 99; */
}

#intro-container h1 {
    font-size: 20px;
}

#intro-container p {
    text-align: center;
    font-size: 14px;
    color: #8d99ae;
}

#intro-container span {
    color: #2b2d42;
}

@media (min-width: 768px) {
    #intro-container {
        top: 300px;
        padding: 10%;
    }

    #intro-container h1 {
        font-size: 35px;
    }

    #intro-container p {
        font-size: 20px;
    }
}

@media (min-width: 1025px) {
    #intro-container {
        width: 50%;
        height: 400px;
        /* padding: 15% 5%; */
        padding: 3%;
        margin: 5%;
        top: 120px;
        border-radius: 3%;
    }

    #intro-container h1 {
        font-size: 25px;
    }

    #intro-container p {
        font-size: 20px;
    }
}

@media (min-width: 1200px) {}

/* skills section */
#skills-container {
    position: relative;
    background-color: #2b2d42;
    /* border: 1px solid red; */
    width: 100%;
    /* height: 200px; */
    top: 150px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    padding: 2%;
    text-align: center;
}

.skills-sub-container {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    /* border: 1px solid blue; */
    padding: 2%;
}

.skills-title {
    justify-self: center;
    color: #83c5be;
    text-decoration: 2px underline;
}

.skills-list {
    justify-self: center;
    padding: 2%;
    color: #edf2f4;
    font-size: 90%;
}

.skills-list p:hover {
    font-size: 120%;
    font-weight: bold;
}

@media (min-width:768px) {
    #skills-container {
        top: 300px;
        flex-direction: row;
    }

    .skills-title {
        font-size: 150%;
    }

    .skills-list {
        font-size: 120%;
    }
}

@media (min-width:1025px) {
    #skills-container {
        top: 150px;
    }
}

@media (min-width:1200) {}

/* projects section */
#project-container {
    width: 100%;
    height: 350px;
    position: relative;
    top: 150px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    /* padding: 30px 0; */
}

#project-box-container {
    width: 100%;
    height: 90%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.project-box,
#project-header {
    width: 85%;
    height: 100%;
    /* border-radius: 20px; */
    display: flex;
    justify-content: left;
    align-items: center;
    border-bottom: 1px solid #8d99ae;
    text-decoration: none;
}

.project-box {
    display: flex;
    justify-content: space-between;
    transition: 0.7s;
}

.project-box:hover {
    background: #8d99ae;
    padding: 0 3%;
}

.project-box h2 {
    color: #fcf6ea;
    font-size: 20px;
    font-weight: 600;
}

.project-skills {
    color: #fcf6ea;
    text-align: end;
    opacity: 0;
    font-weight: bold;
    font-style: italic;
}

#project-header {
    display: flex;
    flex-direction: row;
    justify-content: start;
    /* align-items: start; */
}

#project-header h2 {
    color: #83c5be;
    font-size: 18px;
    font-weight: 600;
}

@media (min-width: 768px) {
    #project-container {
        top: 300px;
        height: 550px;
    }

    .project-box h2 {
        font-size: 30px;
    }

    #project-header h2 {
        font-size: 26px;
    }
}

@media (min-width: 1025px) {
    #project-container {
        top: 150px;
        height: 600px;
    }

    #project-header {
        font-size: 35px;
    }
}

@media (min-width: 1200px) {
    #project-container {
        height: 700px;
    }
}