@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Oswald:wght@200..700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

/*Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: rgb(245, 245, 248) rgba(164, 164, 164, 0.329);
    scroll-behavior: smooth;
  }
  
  /* Chrome, Edge, and Safari */
  *::-webkit-scrollbar {
    width: 12px;
  }
  
  *::-webkit-scrollbar-track {
    background: rgba(164, 164, 164, 0.329);
  }
  
  *::-webkit-scrollbar-thumb {
    background-color:rgba(164, 164, 164, 0.329);
    border-radius: 20px;
    border: 3px solid rgb(245, 245, 248);
  }

html, body 
{
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  
}




#main 
{
    height: 100vh;
    width: 100%;
    display: flex;
    z-index: 0;
}

#menu
{

    width:50%;
    height:100%;
    padding-left: 1rem;
    color: white;

}

#info
{

    width:60%;
    height:80%;
   padding: 3rem;
    color: white;
    z-index: 1;
    overflow-y: scroll;
}


h1
{
    font-size: 3rem;
}

h2
{
    font-weight: 400;
}

#position
{
    margin-top: -2rem;
}

#text
{
    text-align: justify;
}

.link
{
color: white;
text-decoration: none;
font-size: large;
margin-bottom: 2rem;
}

.link::after
{
    content: "";
    height: 4px;
    width:0;
    background-color: white;
    display: block;
    transition: all 300ms;

}

.link:hover::after
{
    width:14%
}

#menuHeader
{
    height: 30%;
}

#submenu
{
    height: 50%;
    position: static;
    display: flex;
    flex-direction: column;
}

.imgStart
{

    height:3rem;
  
   align-self: flex-start;
 

}

h3
{
    margin-top: 2rem;
}

.project, .career
{
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    height: 8rem;
    transition: background-color 0.1s ease 0.3s;
    border-radius: 10px;
}

.project:hover
{
    cursor: pointer;
    border-color: blanchedalmond;
    background-color: rgba(221, 221, 221, 0.204);
}

.imgProject
{
    height: 60%;
    width: auto;
    border-radius: 10px;
}

.project div, .career div
{
    
    width: 65%;
}

.project p, .career p
{
    font-size:small;
}

.tech
{
    display: inline-block;
    width: 3rem;
    height: 1.5rem;
    border-radius: 10px;
    background-color:rgba(1, 93, 107, 0.867) ;
    text-align: center;
    color: rgb(16, 255, 243);
}

a
{
    text-decoration: none;
    color: white;
}


.littleContainer
{
    margin-top: 2rem;
    margin-bottom: 4rem;
}

.career
{
    border: 1px solid aliceblue;

    margin-top: 2rem;
   
}


@media screen and (max-width: 900px) 
{
    #main {
        flex-direction: column;
    }

    #menu
    {
        width: 100%;
        padding-left: 2rem;
        
        height: 20%;
    }

    #info
    {
        width: 85%;
        height: auto;
        padding-left: 2rem;
        padding-top: 1px;
       
    }
    
   

    #submenu
    {
       
        height: 20%;
        flex-direction: row;
        padding-left: 2rem;
        width: 80%;
        
        justify-content: space-around;
        
    }

    #menu h2
    {
        display: none;
    }


    #submenu h3
    {
        display: none;
    }

    #followSection
    {
        display: none;
    }


}



@media screen and (max-width: 750px) 
{
    
    .career
    {
        height: auto;
        flex-direction: column-reverse;
        padding-top: 1rem;
    }

    .project
    {
        height: auto;
        flex-direction: column;
        background-color: rgba(221, 221, 221, 0.204);
        padding-top: 1rem;
        padding-bottom: 1rem;
       
    }


    .career div, .project div
    {
        
        width: 80%;
    }

    .career img, .project img
    {
        width: 80%;
        height: auto;
    }
}
