body{
    margin: 0 0 0 0;
    background-color: var(--Primary);
    font-family: "Ubuntu";
}
a{
    text-decoration: none;
    color: white;
}
:root{
    --Primary: #766f6f69;
    --Color_1: #F1C338;
    --Color_2: #F2F2F2;
    --Color_3: #D97C2B;
    --Color_4: #364959;
}
body:has(#HUM:checked) {
    --Primary: #F2A35E;
    --Color_1: #735340;
    --Color_2: #F2E5A0;
    --Color_3: #364959;
    --Color_4: #0D0D0D;
}
body:has(#DS:checked) {
    --Primary: #F2A35E;
    --Color_1: #735340;
    --Color_2: #F2E5A0;
    --Color_3: #364959;
    --Color_4: #0D0D0D;
}
body:has(#LOTM:checked) {
    --Primary: #86A6A6;
    --Color_1: #DBF2D8;
    --Color_2: #405059;
    --Color_3: #6B90BF;
    --Color_4: #D9B777;
}
body:has(#OCG:checked) {
    --Primary: #6b7B8c;
    --Color_1: #dccdcdce;
    --Color_2: #3b4d61;
    --Color_3: #364959;
    --Color_4: #0D0D0D;
}
body:has(#Steam:checked) {
    --Primary: #224459;
    --Color_1: #182026;
    --Color_2: #1BA0F2;
    --Color_3: #6666f6;
    --Color_4: #000000;
}
.Header{
    position: fixed;
    display: flex;
    width: 82%;
    border-radius: 0 0 60px 60px;
    corner-shape: squircle;
    height: 50px;
    background-color: var(--Color_2);
    justify-content: center;
    align-items: center;
    gap: 40px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    z-index: 10;
}
.Header_Name{
    display: none;
    margin: 0;
}
.Header_Order{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
    pointer-events: none;
    transition: all 0.2s;
}
.Button{
    background-color: var(--Color_1);
    border-radius: 30px;
    border: 0;
    text-align: center;
    padding: 6px;
}
.Button:hover{
    transform: scale(1.2);
}
.Text_Button{
    font-size: 18px;
    line-height: 0px;
}
.Icon_Color{
    color: var(--Color_2);
}
input:checked + label .Icon_Color{
    color: var(--Primary);
}
.Color_Changer{
    position:fixed;
    display: flex;
    width: 100%;
    text-align: end;
    justify-content: end;
    bottom: 10px;
    gap: 10px;
}
.Color_Changer_Button{
    margin-right: 10px;
}
.Color_Button{
    display: none;
}
#Color_Changer:checked ~ .Color_Button{
    display: flex;
}
.Order_1{
    order: 1;
}
.Box{
    background-color: var(--Color_2);
    border-radius: 60px 60px 60px 60px;
    corner-shape: squircle;
    padding: 20px;
    width: fit-content;
}
.Box_Title{
    display: flex;
    flex-direction: column;
}
.Box_Me{
    width: 250px;
}
.Box_Image_Project{
    width: 200px;
    padding: 3px;
    background-color: var(--Color_3);
}
.PC_Box_Project{
    display: none;
    width: 1050px;
    background-color: var(--Color_2);
    flex-direction: column;
    align-items: center;
    border-radius: 60px 60px 60px 60px;
    corner-shape: squircle;
}
.PC_Box_Project_Image{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    width: 520px;
    gap: 20px;
}
.PC_Project_Main{
    display: flex;
    flex-direction: row;
    gap: 60px;
    margin: 15px 0 15px 0;
}
.Box_Text{
    display: flex;
    flex-direction: column;
    max-width: 300px;
    align-items: center;
    justify-content: center;
    text-align: start;
    min-width: 215px;
    flex-wrap: wrap;
}
.Box_Download{
    background-color: var(--Color_3);
    margin-bottom: 20px;
    min-width: 215px;
}
.Box_Download:hover{
    transform: scale(1.2);
    cursor: pointer;
}
.Contact_Src{
    width: 45px;
}
.Contact_Src:hover{
    transform: scale(1.2);
}
.Box_Project:hover{
    transform: scale(1.2);
}
.Box_Contact{
    display: flex;
    gap: 20px;
}
.Title{
    font-size: 20px;
    margin-bottom: 0;
    font-weight: bold;
}
.Sub_Title{
    font-size: 20px;
    margin-top: 0;
}
.Download{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.Page{
    display: flex;
    width: 100%;
    min-height: 100vh;
    justify-content: center;
    text-align: center;
    padding-top: 100px;
}
.Me{
    display: none;
    justify-content: center;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    margin-bottom: 20px;
}
body:has(#Me:checked) .Me{
    display: flex;
}
.Home{
    display: none;
    width: 100%;
    height: 70vh;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
}
body:has(#Home:checked) .Home{
    display: flex;
}
.Project{
    display: none;
    width: fit-content;
    justify-content: center;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    margin-bottom: 20px;
}
.Project:hover{
    cursor: pointer;
}
.Project_Modal{
    border-color: var(--Primary);
    width: 80%;
    background-color: var(--Color_2);
    padding: 0;
    border-radius: 60px 60px 60px 60px;
    corner-shape: squircle;
}
.Project_Modal_Head{
    width: 100%;
    display: flex;
    justify-content: end;
}
.Project_Modal_Exit{
    display: flex;
    width: fit-content;
    background-color: var(--Color_1);
    justify-content: center;
    align-items: center;
    border-radius: 60px 60px 60px 60px;
    corner-shape: squircle;
    margin: 10px 10px 0 0;
    padding: 2px;
}
.Project_Modal_Exit:hover{
    cursor: pointer;
}
body:has(#Project:checked) .Project{
    display: flex;
}
.PC_Project{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-direction: column;
    margin-bottom: 120px;
}
/* Title Portfolio */

.Portfolio{
    display: flex;
    flex-direction: row;
    font-size: 15vw;
    color: var(--Color_2);
    align-items: center;
    animation: Portfolio ease 2s;
    justify-content: center;
    z-index: -1;
}
.Portfolio_Letter:hover{
    cursor: pointer;
    color: var(--Color_3);
}
.Portfolio_Letter:active{
    cursor:row-resize;
    transition: ease 4s;
    transform: scale(1.4);
}
@keyframes Portfolio{
    to{
        transform: scale(1);
        opacity: 1;
    }
    from{
        transform: scale(4);
        opacity: 0;
    }
    0%{
        color: var(--Primary);
    }
    20%{
        color: var(--Color_4);
    }
    40%{
        color: var(--Color_3);
    }
    60%{
        color: var(--Color_1);
    }
    80%{
        color: var(--Color_2);
    }
}
.Order_SkillS{
    padding: 10px 0 10px 0;
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
}
.Skills{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 50px;
}
.Skills:hover{
    animation: Rotates infinite linear 2.4s;
}
.Skills_Place{
    display: flex;
    flex-direction: row;
    font-weight: 16px;
    color: var(--Color_4);
}
.Skills_Description{
    display: none;
    width:max-content;
}
.Skills_Place:hover .Skills_Description{
    display: flex;
    transition: all ease 4s;
}
.Center{
    display: flex;
    justify-content: center;
    align-items: center;
}
.Mobile_Touch{
    margin-top: 10px;
    animation: Mobile_Touch alternate infinite linear 1.5s;
}
.Time_Line{
    display: none;
    margin-bottom: 20px;
    justify-content: center;
    align-items: center;
}
.Box_Time_Line{
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
body:has(#Time_Line:checked) .Time_Line{
    display: flex;
}
* {
  box-sizing: border-box;
}
.Time_Line_Entity{
  position: relative;
  margin: 0 auto;
  z-index: -1;
}
.Time_Line_Entity::after {
  content: '';
  position: absolute;
  width: 6px;
  background-color: var(--Color_4);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
  border-radius: 100px;
}
.container::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  right: -17px;
  background-color: var(--Color_2);
  border: 4px solid var(--Color_4);
  top: 45%;
  border-radius: 50%;
  z-index: 1;
}
.Time_Line_Entity::after {
    left: 31px;
}
.container {
    padding: 10px 40px;
    position: relative;
    width: 100%;
    padding-right: 25px;
}
.container::before {
    left: 60px;
    border: medium solid white;
    border-width: 10px 10px 10px 0;
    border-color: transparent white transparent transparent;
}
.left::after, .right::after {
    left: 15px;
}
@keyframes Mobile_Touch{
    from{
        transform: scale(1.2);
    }
    to{
        transform: scale(1.6);
    }
}
@keyframes Rotates{
    from{
        transform: rotate(0deg);
    }
    to{
        transform: rotate(360deg);
    }
}.Pc_Skills{
    display: none;
}
@media screen and (min-width: 1050px){
    .Home, .Me, .Project, .Time_Line {
        display: flex !important;
        flex-direction: row;
    }
    .PC{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .Pc_Skills{
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 8%;
        margin: 60px;
        transform: scale(2);
    }
    .Project{
        gap: 120px;
    }
    .Header_Name{
        display: flex;
    }
    .Header_Order{
        pointer-events: auto;
    }
    .Box_Project{
        display: none;
    }
    .PC_Box_Project{
        display: flex;
    }
    .Box_Image_Project{
        width: 250px;
    }
}