@import url('https://fonts.googleapis.com/css2?family=Outfit&family=Roboto+Condensed:wght@700&display=swap');
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    background-color: #222f3e;
}

/* width */
::-webkit-scrollbar {
    width: 10px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: #066c83; 
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #48dbfb; 
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #7de3fa; 
  }

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    margin-left: 280px;
}


.containerTitle {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 3.4rem;
    letter-spacing: 3px;
    color: #48dbfb;
}


li {
    list-style: none;
}

a {
    text-decoration: none;
    transition: 0.4s;
}

a:hover {
    color: rgb(168, 167, 167);
    transition: 0.4s;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background-color: #141c25;
    font-family: 'Open Sans', sans-serif;
    position: fixed;
    z-index: 100;
    width: 100%;
}

.navMenu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
}

.navItem {
    margin-left: 5rem;
}

.navLink {
    font-size: 1.6rem;
    font-weight: 400;
    color: #0abbe3bb;
}

.navLink:hover {
    color: #0abbe3;
}

.hamburger {
    display: none;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3 ease-in-out;
    transition: all 0.3 ease-in-out;
    background-color: #0abde3;
}

/* === SIDENAV === */
.sidenav {
    height: 100%;
    width: 250px;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background: #48dbfb;
    overflow-x: hidden;
    padding-top: 20px;
    border-right: solid 5px #0abde3;
    text-align: center;
}

.sideList {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 95vh;
    flex-direction: column;
}

.sidenav ul {
    margin-top: 40px;
}

.sidenav a {
    font-family: 'Outfit', sans-serif;
    letter-spacing: 1px;
    font-size: 1.2rem;
    color: #ffffffe1;
    line-height: 40px;
    display: inline;
    position: relative;
    overflow: hidden;
}

.sidenav a:after {
    content: "";
    position: absolute;
    z-index: -1;
    right: 0;
    width: 0;
    bottom: 5px;
    background: #0abde3;
    height: 13px;
    transition-property: width;
    transition-duration: 0.3s;
    transition-timing-function: ease-out;
  }
.sidenav a:hover:after,
.sidenav a:focus:after,
.sidenav a:active:after {
    left: 0;
    right: auto;
    width: 100%;
  }

.sidenav img {
    border-radius: 50%;
    width: 150px;
    border: solid 10px #0abde3;
}

/* === ABOUT === */

#about .userImage {
    text-align: center;
}

#about .userImage img{
    border-radius: 50%;
    border: solid 10px #0abde3;
    margin-top: 120px;
}

#about {
    height: 100vh;
}

#about .text {
    display: flex;
    justify-content: center;
    height: 80vh;
    flex-direction: column; 
    color: white;
}

#about h1 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 4rem;
    letter-spacing: 3px;
}

#about span {
    font-family: 'Roboto Condensed', sans-serif;
    letter-spacing: 3px;
    margin-left: 20px;
    color: #48dbfb;
    position: relative;
}

#about span::after {
    background: #0abbe38f;
    content: "";
    height: 2rem;
    left: 0;
    margin-top: calc(0.125em / 2 * -3.5);
    position: absolute;
    right: 0;
    top: 50%;
    z-index: -1;
    width: 450px;
}

#about p {
    margin-top: 100px;
    max-width: 1000px;
    letter-spacing: 1px;
    line-height: 35px;
    font-family: 'Outfit', sans-serif;
}

#about i {
    font-size: 2.5grem;
    border-radius: 50%;
    border: solid #576574 10px;
    background-color: #576574;
    color: white;
    transition: 1s;
    margin-top: -150px;
    position: absolute;
}

#about i:hover {
    border: solid #8395a7 10px;
    background-color: #8395a7;
    color: white;  
}

/* === EXPERINCE === */

#experince {
    height: 100vh;
}

.experinceCard {
    margin-top: 50px;
    border-left: solid #48dbfb 5px;
    padding-left: 20px;
}

.experinceCard .header {
    display: flex;
    max-width: 1300px;
    justify-content: space-between;
    font-family: 'Roboto Condensed', sans-serif;
    color: white;
}

.header h1 {
    letter-spacing: 1px;
    font-size: 1.8rem;
    font-family: 'Roboto Condensed', sans-serif;
}

.header h2 {
    color: #576574;
    letter-spacing: 1px;
    margin-top: 10px;
    font-size: 1.5rem;
    font-family: 'Roboto Condensed', sans-serif;
}

.header .date h1{
    color: #0abbe370;
    font-size: 1.2rem;
    letter-spacing: 1.5px;
}

.description p {
    color: #576574;
    margin-top: 15px;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 1.5px;
}

/* === SKILLS === */
#skill {
    height: 100vh;
}


.skillList h1 {
    margin-top: 50px;
    margin-bottom: 50px;
    letter-spacing: 1px;
    letter-spacing: 1px;
    font-size: 1.8rem;
    font-family: 'Roboto Condensed', sans-serif;
    color: white;
}

.skillList .listItems {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 700px;
    align-items: center;
}

.skillList img {
    width: 60px;
}

.item p {
    color: #576574;
    margin-top: 15px;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 1.5px;
    text-align: center;
}

/* === CONTACT === */
#contact {
    height: 50vh;
}

.discord {
    display: flex;
    flex-direction: row;
    max-width: 200px;
    align-items: center;
    justify-content: space-between;
    margin-top: 50px;
}

.discord p {
    color: #576574;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 1.5px;
    text-align: center;
}

.email {
    display: flex;
    flex-direction: row;
    max-width: 270px;
    align-items: center;
    justify-content: space-between;
    margin-top: 50px;
}

.email p {
    color: #576574;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 1.5px;
    text-align: center;
}

.contact img {
    width: 50px;
}

.timeZone {
    color: #576574;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 1.5px;
    margin-top: 80px;
}





@media screen and (min-width:1122px) {
    nav {
        display: none;
        background-color: transparent!important;

    }
    .navMenu {
        display: none;
    }
    .userImage {
        display: none;
    }
}



@media only screen and (max-width: 1122px) {
    .sidenav {
        display: none;
    }
    .container {
        margin-left: 50px!important;
        margin-right: 50px!important;
    }
    #about i {
        margin-top: 0;
        position: relative;
    }
    .gitHub {
        text-align: center;
    }
    .navMenu {
        position: fixed;
        left: -100%;
        top: 3rem;
        flex-direction: column;
        background-color: white;
        width: 100%;
        border-radius: 10px;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        background-color: #141c25;
        z-index: 100;
    }

    .navMenu.active {
        left: 0;
    }

    .navItem {
        margin: 2.5rem 0;
    }

    .hamburger {
        display: block;
        cursor: pointer;
    }
    #experince {
        margin-top: 140px;
    }
    #about .text {
        text-align: center;
    }
    .gitHub {
        margin-top: -100px;

    }
  }


@media only screen and (max-width: 750px) {
    .sidenav {
        display: none;
    }
    .container {
        margin-left: 0!important;
        margin-right: 0!important;
    }
    .containerTitle {
        font-size: 2rem;
    }
    .header .text h1 {
        font-size: 1.5;
    }
    .header .text h2 {
        font-size: 1.2;
    }
    .header .date h1 {
        font-size: 0.5rem;
    }
    #about h1 {
        font-size: 2.5rem;
        text-align: center;
    }
    #about span::after {
        width: 250px;
    }
    #about p {
        margin: 0 auto;
        max-width: 100%;
        margin-left: 10px;
        margin-right: 10px;
        margin-top: 50px;
    }
    #about i {
        margin: 0 auto;
    }
    .skillList .item {
        width: 100px;
        text-align: center;
    }
  }

  @media only screen and (max-width: 410px) {
    .header .title h1 {
        font-size: 20px!important;
    }
    .header .title h2 {
        font-size: 15px!important;
    }
  }

  @media only screen and (max-width: 350px) {
    .containerTitle {
        margin-top: 160px;
    }
  }