
*{
    box-sizing: border-box;
}

p{
    margin: 0;
    padding: 0;
}

a{
    text-decoration: none;
}

body,html{
    margin: 0px;
    padding: 0px;
}

html {
  scroll-behavior: smooth;
}

body{
    display: flex;
}

nav{
    user-select: none;
    position: fixed;
    width: 400px;
    min-width: 200px;
    height: 100dvh;
    background-color:rgb(42, 42, 42);
    border-right: 2px solid rgb(255, 255, 255) ;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px;
}

nav > .photo{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin:30px 0;
}

nav > .photo > img{
    width: 320px;
    height: 320px;
    border: white 3px solid;
    border-radius: 50%;
}

nav > .photo > h1{
    color:white;
    font-size: 2em;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif
}

nav > .navLinks {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap:10px;
}

nav > .navLinks > div{
    width: 170px;
    height: 40px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    text-align: center;
    cursor: pointer;
}

nav > .navLinks > div:hover i{
    color: rgb(198, 59, 59);
}

nav > .navLinks > div > i{
    color: rgb(149, 149, 149);
    font-size: 1.7em;
    transition: all .2s ease-in-out;
}

nav > .navLinks > div > p{
    color: white;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 1.4em;
    font-weight: 700;
    transition: all .2s ease-in-out;
}

nav > .options {
    margin:30px 10px;
    margin-top: 70px;
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 0 30px;
}

nav > .options > i{
    font-size: 2.5em;
    color: rgb(152, 152, 111);
    transition: all .2s ease-in-out;
    cursor: pointer;
}

nav > .options > i:hover{
    color: rgb(181, 181, 47);
}

nav > .options > div{
    display: flex;
    justify-content: center;
    align-items:center;
    text-align: center;
    gap:20px;
    margin-right: 20px;
    transition: all .2s ease-in-out;
    cursor: pointer;
}

nav > .options > div:hover i{
    color: rgb(51, 51, 157);
}

nav > .options > div > i{
    font-size: 2.5em;
    color:rgb(144, 159, 172);
    transition: all .2s ease-in-out;
}

nav > .options > div > a{
    font-size: 1.4em;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-weight: 700;
    color: white;
    transition: all .2s ease-in-out;
}

main{
    margin-left: 400px;
    width: 100%;
    height: auto;
    background-color:rgb(42, 42, 42);
}

main > #home{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

main > #home > h2{
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: white;
    font-size: 5em;
    font-weight: 900;
    user-select: none;
}

main > #home > h1{
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: #6c96e5;
    font-size: 5em;
    font-weight: 900;
    user-select: none;
}

main > #home > p{
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: white;
    font-size: 2em;
    font-weight: 600;
}

main > #home > i{
    margin: 0;
    margin-top: 100px;
    color: white;
    font-size: 3em;
    font-weight: 700;
    cursor: pointer;
}

main > #about{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 200px;
    padding-right: 200px;
}

main > #about > h2{
    font-size: 2.5em;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: white;
    margin-bottom: 80px;
    user-select: none;
}

main > #about > div{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

main > #about > div > p{
    width: 500px;
    font-size: 1.45em;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: white;
}

main > #about > div > school{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    row-gap: 20px;
    cursor: pointer;
}

main > #about > div > school > h3{
    font-size: 1.45em;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: white;
    text-align: center;
}

main > #about > div > school > img{
    user-select: none;
    width: 300px;
}

main > #about > div > school > p{
    font-size: 1em;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: white;
    text-align: center;
    font-weight: bold;
    text-align: center;
}

main > #about > div > div{
    display: flex;
    flex-direction: column;
    row-gap: 40px;
}

main > #about > div > div > i{
    font-size: 5em;
    color:white;
    cursor: pointer;
}

main > #skills{
    width: 100%;
    height: 100vh;
    padding-left: 200px;
    padding-right: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

main > #skills > h2{
    font-size: 2.5em;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: white;
    margin-bottom: 80px;
    user-select: none;
}

main > #skills > div{
    display: grid;
    gap:50px;
    grid-template-columns: repeat(3,1fr);
    user-select: none;
}

main > #skills > div > div{
    width: 300px;
    height: 180px;
    border-radius: 20px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    border: solid rgb(195, 226, 255) 3px;
    transition: all ease .3s;
    cursor: default;
    transform: scale(1.03);
}

main > #skills > div > div:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

main > #skills > div > div > div{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 5px;
}

main > #skills > div > div > div > p{
    font-family: 'Poppins',sans-serif;
    font-size: 1.5em;
}

main > #skills > div > div > div > img{
    width: 100px;    
    height: 100px;
}

main > #skills > div > div > bar{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 10px;
}

main > #skills > div > div > bar > div{
    border: solid 3px black;
    border-radius: 10px;
    width: 20px;
    height: 95px;
    background-color: white;
    display: flex;
    flex-direction: column-reverse;
}

main > #skills > div > div > bar > div > .up{
    width: 100%;
}

main > #skills > div > div > bar > div > .down{
    width: 100%;
    border-radius: 10px;
    background-color: hsl(0, 100%, 54%);
}

main > #skills > div > div > bar > p{
   font-size: 1.5em;
   font-family: 'Poppins',sans-serif;
}

main > #certificates{
    width: 100%;
    height: 100vh;
    padding-left: 200px;
    padding-right: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

main > #certificates > h2{
    font-size: 2.5em;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: white;
    margin-bottom: 50px;
    user-select: none;
    margin-left: -5px;
}

main > #certificates > div {
    display:flex;
    column-gap: 20px;
    width: 1115px;
    overflow-x: scroll;
    padding: 10px;
    border: solid rgb(84, 84, 84) 3px;
    background-color: rgb(52, 52, 52);
    border-radius: 20px;
    margin-left: -10px;
    scroll-behavior: smooth;
    outline: none;
}

main > #certificates > div::-webkit-scrollbar {
    display: none;
}

main > #certificates > div > div {
    width: 350px;
    height: 500px;
    border: 3px white solid;
    border-radius: 18px;
    background-color: grey;
    padding: 10px;
    cursor: pointer;
}

main > #certificates > div > div > div{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    height: 250px;
}

main > #certificates > div > div > div > img {
    border-radius: 10px;
    user-select: none;
}

main > #certificates > div > div > h3{
    font-family: 'Poppins', sans-serif;
    font-size: 1.6em;
    text-align: center;
}

main > #certificates > div > div > p{
    font-family: 'Poppins', sans-serif;
    font-size: 1.2em;
    text-align: center;
}

main > #certificates > arrows{
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 5px;
    user-select: none;
}

main > #certificates > arrows > div{
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 3em;
    cursor: pointer;
}

main > #projects {
    width: 100%;
    height: 100vh;
    padding-left: 200px;
    padding-right: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

main > #projects > h2{
    font-size: 2.5em;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: white;
    margin-bottom: 50px;
    user-select: none;
}
