#homePage{
    position: relative;
    display: flex;
    z-index: 1;
    width: 100%;
    min-height: 100vh;
    flex-direction: column;
    align-items: center;
    background: var(--ColorThemes0);
    justify-content: space-between;
}
#homePage > .lang{
    display: flex;
    flex-direction: row;
    margin: 50px;
}
#homePage > .lang > input{
    display: none;
}
#homePage > .lang > label{
    position: relative;
    display: flex;
    width: 55px;
    margin: 0 20px;
    height: 35px;
    border-radius: 15px;
    border: 2px solid var(--ColorThemes1);
    background-color: var(--ColorThemes0);
    color: rgb(255 255 255 / 70%);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
}
#homePage > .lang > input:checked + label{
    border: 2px solid var(--ColorThemes1);
    background-color: var(--ColorThemes1);
}
#homePage .lang > input:checked + label{
    border: 2px solid var(--ColorThemes1);
    background-color: var(--ColorThemes1);
}
@media (hover: hover) {
    #homePage .lang > label:hover{
        border-style: dashed;
    }
    #homePage .lang > input:checked + label:hover{
        border: 2px solid var(--ColorThemes0);
        background-color: var(--ColorThemes1);
        border-style: dashed;
    }
}



#homePage > .logo{
    display: flex;
    position: relative;
    flex-direction: column;
    min-width: 300px;
    min-height: 300px;
    justify-content: center;
    align-items: center;
}
#homePage > .logo > svg{
    fill: var(--ColorThemes1);
    width: 340px;
    height: 340px;
    position: absolute;
    z-index: 1;
}
#homePage > .logo > h1{
    color: #fff;
    z-index: 2;
    font-size: 35px;
    opacity: 0.8;
}



#homePage > .bottons{
    display: flex;
    flex-direction: column;
    margin: 50px 0;
    max-width: 300px;
    min-height: 210px;
    width: 100%;
    align-items: center;
    justify-content: flex-end;
}
#homePage > .bottons > button{
    width: 100%;
    margin: 10px 0;
    height: 50px;
    border-radius: 15px;
    border: 2px solid var(--ColorThemes1);
    background-color: var(--ColorThemes0);
    color: rgb(255 255 255 / 70%);
    z-index: 999;
    cursor: pointer;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 600;
    transition: all .3s ease 0s;
    border-style: solid;
}
@media (hover: hover) {
    #homePage > .bottons > button:hover{
        border-style: dashed;
    }
}



#homePage > .version{
    font-size: 14px;
    color: #fff;
    opacity: 0.5;
    margin-bottom: 20px;
}