@import url('https://fonts.googleapis.com/css2?family=Jost:wght@100;200;300;400;500;600;700;800;900&family=Poppins: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');

/* font-family: 'Jost', sans-serif;
font-family: 'Poppins', sans-serif; */

*{
    margin: 0;
    padding: 0;
}

body{
    font-family: 'Poppins',sans-serif;
    font-weight: 300;
    height: 100%;
    width: 100%;
    overflow-y: scroll;
}

html{
    scroll-behavior: smooth;
}

p{
    color: rgb(85,85,85);
}

a,
.btn{
    transition: all 300ms ease;
}


/* desktop - nav */



nav,
.nav-links {
    display: flex;
}

nav {
    justify-content: space-around;
    align-items: center;
    height: 15vh;
}

.nav-links {
    gap: 2rem;
    list-style: none;
    font-size: 1.5rem;
}

a {
    color: #000;
    text-decoration: none;
    text-decoration-color: #fff;
    transition: all 300ms ease;
}

a:hover {
    color: grey;
    text-decoration: underline;
    text-underline-offset: 1rem;
    text-decoration-color: rgb(181, 181, 181);
}

.logo {
    font-size: 1.7rem;
    font-weight: 400;
}

.logo:hover {
    cursor: default;
}

#hamburger-nav .logo {
    font-size: 1.3rem;
    margin-top: 30px;
}

#hamburger-nav a:hover {
    text-underline-offset: .5rem;
}

.hamburger-menu {
    position: relative;
    display: inline-block;
}

.hamburger-icon {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 30px;
    width: 30px;
    cursor: pointer;
}

.hamburger-icon .open {
    position: relative;
    height: 30px;
    width: 30px;
    display: block;
    background-color: white;
    transition: .5s;
}

.hamburger-icon .close {
    display: none;
    position: relative;
    top: 0;
    right: -70px;
    height: 30px;
    margin-bottom: 10px;
    width: 100%;
    transition: .5s;
}

.menu-links {
    display: none;
    position: relative;
    top: 100%;
    right: 0;
    max-height: 0;
    width: fit-content;
    list-style: none;
    background-color: white;
    transition: .5s;
}

.menu-links li {
    margin: 10px 0;
}

main .content {
    margin: 7rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

main .pic .back {
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-color: rgba(85, 85, 85, .3);
    height: 400px;
    width: 400px;
    border-radius: 60% 40% 26% 74% / 51% 21% 79% 49%;
    margin-right: 2rem;
}

main .pic img {
    height: 300px;
    width: 300px;
    border-radius: 50%;
    background-size: cover;
    margin-right: 1rem;
}

main .main-content {
    margin-left: 1rem;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-weight: 600;
}

main .main-content h5,
main .main-content h3 {
    color: rgb(85, 85, 85);
}

main .main-content h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-top: 1rem;
    margin-bottom: .4rem;
}

main .main-content h5 {
    text-align: center;
    font-size: 1rem;
    margin-bottom: 1rem;
}

main .main-content h1 {
    text-align: center;
    font-size: 2rem;
    margin: 0px;
}

main .main-content .buttons {
    margin-top: 1rem;
}

main .main-content .buttons .button {
    height: 50px;
    width: 130px;
    border-radius: 20px;
    outline: none;
    border: none;
    font-weight: 600;
    margin: 3px 3px 3px 3px;
}

main .main-content .buttons .button1 {
    background-color: #fff;
    color: #000;
    border: 1.5px solid #000;
    outline: none;
    transition: all .5s;
    cursor: pointer;
}

main .main-content .buttons .button1:hover {
    height: 48px;
    background-color: rgb(53, 53, 53);
    color: #fff;
    outline: none;
    border: none;
    box-shadow: 0 0 2px 1px rgba(0, 0, 0, .2);
}

main .main-content .buttons .button2 {
    background-color: rgb(53, 53, 53);
    color: #fff;
    border: 1.5px solid #000;
    outline: none;
    transition: all .5s;
    cursor: pointer;
}

main .main-content .buttons .button2:hover {
    height: 48px;
    background-color: #fff;
    color: #000;
    outline: none;
    border: 1.5px solid rgb(53, 53, 53);
    box-shadow: 0 0 2px 1px rgba(0, 0, 0, .2);
}


main .main-content .links .icon{
    height: 30px;
    width: 30px;
    margin: 11px 3px;
    cursor:pointer;
}





#about {
    margin-top: 10rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  #about .head {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  #about .head h3 {
    font-size: 1rem;
    font-weight: 300;
    color: rgb(85, 85, 85);
  }
  
  #about .head h1 {
    font-size: 2rem;
    font-weight: 600;
  }
  
  #about .content .boxes {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
  
  #about .content .boxes .box {
    padding: 1rem;
    text-align: center;
    flex-wrap: wrap;
    height: 100%;
    min-width: 130px;
    max-width: 200px;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    margin: 1rem;
    transition: 0.5s;
  }
  
  #about .content .boxes .box:hover {
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  #about .icon {
    font-size: 2rem;
    margin: 5px;
    cursor: pointer;
  }
  
  #about .icons {
    display: flex;
    align-self: flex-end;
    margin-right: 15px;
  }
  



.icon{
    font-size: 2rem;
    margin: 5px;
    cursor: pointer;
}
.icons{
    display: flex;
    align-self: flex-end;
    margin-right: 15px;
}



#experience {
    margin-top: 10rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#experience .head {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}
#experience .head h3 {
    font-size: 1rem;
    font-weight: 300;
    color: #555;
}
#experience .head h1 {
    font-size: 2rem;
    font-weight: 600;
}
#experience .technologies {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
   /* padding: 20px;
    */
}
#experience .technologies .development {
    margin: 1rem;
    border: 1px solid rgba(0, 0, 0, .3);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    max-width: 30vw;
    transition: 0.5s;
}
#experience .technologies .development h1 {
    font-size: 1.5rem;
    text-align: left;
    color: #555;
}
#experience .technologies .development .elements {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
#experience .technologies .development .elements .ele {
    display: flex;
    margin: 1rem;
}
#experience .technologies .development .elements .ele ion-icon {
    font-size: 1.3rem;
    margin: 6px;
    margin-top: 10px;
}
#experience .technologies .development .elements .ele .names {
    display: flex;
    flex-direction: column;
    text-align: left;
    margin: 5px;
}
#experience .technologies .development .elements .ele .names h1 {
    font-size: 1.2rem;
    color: #000;
}
#experience .technologies .development .elements .ele .names p {
    font-size: 1rem;
    color: #555;
    font-weight: 300;
}
#experience .technologies .development:hover {
    box-shadow: 2px 2px 5px rgba(0, 0, 0, .1);
}



#projects {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 5rem;
    text-align: center;
  }
  
  .head {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
  }
  
  .head h3 {
    font-size: 1rem;
    font-weight: 300;
    color: rgb(85, 85, 85);
  }
  
  .head h1 {
    font-size: 2rem;
    font-weight: 600;
  }
  
  .projects {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  
  .pro {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .project {
    display: flex;
    flex-direction: column;
    margin: 20px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, .3);
    transition: .5s;
    height: 100%;
    min-width: 200px;
    max-width: 40%;
    padding: 1rem;
    flex-wrap: wrap;
    text-align: center;
  }
  
  .project h1 {
    font-size: 1.5rem;
    margin: .5rem .5rem 0 0;
    text-align: center;
  }
  
  .project p {
    margin-bottom: .7rem;
  }
  
  .project .buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .project button {
    height: 50px;
    width: 130px;
    border-radius: 20px;
    outline: none;
    border: none;
    font-weight: 600;
    /* margin-bottom: 1rem; */
    background-color: #fff;
    color: #000;
    border: 1.5px solid #000;
    outline: none;
    transition: all .5s;
    /* margin-right: 10px; */
    /* margin-top: 1rem; */
    cursor: pointer;
    margin: .5rem;
  }
  
  .project button:hover {
    height: 48px;
    background-color: rgb(53, 53, 53);
    color: #fff;
    outline: none;
    border: none;
    box-shadow: 0 0 2px 1px rgba(0, 0, 0, .2);
  }
  
  .project:hover {
    box-shadow: 2px 2px 5px rgba(0, 0, 0, .1);
  }
  



  #contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 7rem;
    text-align: center;
}
#contact .head {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}
#contact .head h3 {
    font-size: 1rem;
    font-weight: 300;
    color: #555;
}
#contact .head h1 {
    font-size: 2rem;
    font-weight: 600;
}
#contact .sites {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px 0px;
    border: 1px solid rgba(0, 0, 0, .3);
    border-radius: 20px;
    width: 30%;
    max-height: 150px;
    margin-bottom: 20px;
    transition: 0.5s;
}
#contact .sites .site {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
   /* margin: 0 0 20px 20px;
    */
    margin: 5px;
}
#contact .sites .site ion-icon {
    margin: 0 10px;
    font-size: 1.5rem;
}
#contact .sites .site p {
    font-size: 1rem;
    color: #000;
    cursor: pointer;
}
#contact .sites .site p:hover {
    color: grey;
    text-decoration: underline;
    text-underline-offset: 1rem;
    text-decoration-color: #b5b5b5;
}
#contact .sites:hover {
    box-shadow: 2px 2px 5px rgba(0, 0, 0, .1);
}



.footer p {
    color: #555;
    margin: 3rem 0 1rem;
    text-align: center;
}



/* background: #ccc;
  color: #fff;
  
  
  background: rgba(255,218,121,0.5);
  color: #0d0c22;
  */















/* media queries */

@media screen and (max-width: 800px) {
    #desktop-nav {
        display: none;
   }
    #hamburger-nav {
        display: flex;
   }
    main .content {
        margin-top: 3rem;
        flex-direction: column;
        justify-content: center;
        align-items: center;
   }
    main .content .pic {
       /* margin-right: 9.5rem;
        */
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 2rem;
        margin-left: 1rem;
   }
    main .content .pic .back {
       /* min-height: 200px;
        min-width: 200px;
        max-height: 300px;
        max-width: 300px;
        */
       /* width: 140%;
        height: 130%;
        */
       /* overflow: hidden;
        */
        margin: 0;
        height: 200px;
        width: 200px;
        border-radius: 50%;
        background-color: #fff;
   }
    main .content .pic img {
        height: 200px;
        width: 200px;
        margin-left: 0;
   }
    main .content .main-content {
        margin-left: 0px;
   }
    main .content .main-content h3 {
        font-size: 1.2rem;
   }
    main .content .main-content h1 {
        font-size: 1.5rem;
   }
    main .content .main-content h5 {
        font-size: 0.8rem;
   }
    #experience .head h1 {
        font-size: 1.5rem;
   }
    #experience .head h3 {
        font-size: 1rem;
   }
    #experience .technologies .development {
        min-width: 200px;
        padding: 10px;
   }
    #experience .technologies .development h1 {
        font-size: 1.2rem;
   }
    #experience .technologies .elements .ele ion-icon {
        font-size: 1rem;
   }
    #experience .technologies .elements .ele .names h1 {
        font-size: 0.9rem;
   }
    #experience .technologies .elements .ele .names p {
        font-size: 0.3rem;
   }
}

@media screen and (min-width:801px) {
    #desktop-nav {
        display: flex;
   }
    #hamburger-nav {
        display: none;
   }
    
}