:root{
    --LIGHT-GRAY: #D9D9D9;
    --Mint: #C3E1AC;
    --ACCENT: #94CAD2;

    --Soul: #84ebd4;
}

body{
    background:  rgb(30, 31, 32);
    font-family: "Sora", sans-serif;
    overflow-x: hidden;
    margin: 0;
    padding: 0;

}
*{
    box-sizing: border-box;
}
a{
    color: inherit;
    text-decoration: none;
}
::-webkit-scrollbar{
    display: none;
}


.link_pill{
    /* Flex */
    display: flex;
    justify-content: center;

    /* Layout */
    margin-top: 2%;
    padding-left: 5%;
    padding-right: 5%;
    height: auto;
    width: 15%;
    /* Style */
    border-radius: 40px;
    font-size: 1dvw; 
    text-wrap:nowrap;
    line-height: 250%;
    color: white;
    cursor: pointer;

}
.link_pill:nth-of-type(1){
    border: 3px solid var(--ACCENT);
    box-shadow: 0 0 5px var(--ACCENT);
}
.link_pill:nth-of-type(2){
    margin-left: 5%;
    border: 3px solid var(--Mint);
    box-shadow: 0 0 5px var(--Mint);
}
.link_pill:nth-of-type(1):hover{
    background:  var(--ACCENT);  
    
}

.link_pill:nth-of-type(2):hover{
    background:  var(--Mint);
 
}


.header{

    position: absolute;
    display: flex;
    flex-direction: column;
    top: 10%;
    left: 15%;
}
.message_code{
    width: auto;
    height: 10%;
    margin-left: 5%;
    margin-bottom: 0;
    background-image: url(Sources/message-programming.png);
    background-repeat: no-repeat;
}
.font_header{
    color: #FFF;
    font-size: 4dvw;
    font-weight: 600;
    margin-bottom: 0;
    margin-top: 0;
}
.font_subHead{
    color: var(--ACCENT);
    font-size: 1.3dvw;
    font-weight: 600;
}
.font_Quote{
    color: #FFF;
    font-size: 1.2dvw;
    font-weight: 400;
    width: 60%;
}
.font_skills{
    font-size: 3dvw;
    font-weight: 600;
    letter-spacing: 3px;
    color: #FEFEFF; 
    
}
.font_project{
    text-align: center;
    font-size:  3dvw;
    font-weight: 600;
    letter-spacing: 3px;
    color: #FEFEFF;
    
    }

.note{
    color: gray;
    font-weight: 350;
    font-size: 1dvw;
}

.background_img{
    height: 100dvh;
    margin-left: 30%;
    background:
    linear-gradient(to right, rgba(0, 0, 0, .9) 0%, rgba(0, 0, 0, 0) 80%),
    linear-gradient(to bottom, rgba(0, 0, 0, .9), rgba(0, 0, 0, 0) 25%), 
     linear-gradient(to top , rgba(0, 0, 0, .9) 0%, rgba(0, 0, 0, 0) 10%),
    url(Sources/BackgroundPC.jpeg);
    background-size:cover;
    mix-blend-mode: lighten;
}
.header{
    display: flex;
    height: 90dvh;

}

.button_down{
    position: absolute;
    
    cursor: pointer;
    box-shadow: 0 0 5px white;
    border: 3px solid white;
    width: 57px;
    height: 57px;
    border-radius: 50%;
    top: 90%;
    background: none;
}
.button_down:hover{
    box-shadow: 0 0 5px plum;
    border: 3px solid plum;
    
}

.arrow{
    border: solid white;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 5px;
    transform: rotate(45deg);

}


.sub_Header{
    pointer-events: none;
    display: flex; 
    flex-direction: row; 
    justify-content: center;
}

.skill_container{
    display: flex;
    align-items: center;
    padding-top: 3%;
    padding-bottom: 3%;
    padding-left: 10%;  
    padding-right: 15%;
    gap: 150px;
    flex-direction: row;
    justify-content:space-between ;
   margin: auto;
   background: rgba(50,61,72,0.6);
}

.skill_items{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    
}
.skill_items img{
    width: auto;
    height: 125px;  
}

