@charset "UTF-8";

body{
    background-color: white;
    height: 100vh;
    margin: 0;
    transition: background 0.2s linear;
}

body.dark{
    color: white;
    background-color: #0f1926;
}
.dark a{
    color: #BBF2D3;
}
.dark h1, .dark h2{
    color: #BBF2D3;
}

.dark p{
    color: white;
}

.checkbox{
    opacity: 0;
    position: absolute;
}

.label{
    background-color: black;
    border-radius: 50px;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: space-between;
    
    padding: 5px;
    position: relative;
    height: 26px;
    width: 50px;

    transform: scale(1);
}

.label .ball{
    background-color: white;
    border-radius: 50%;
    top: 1px;
    left: 1px;

    transform: translateX(-23px);
    transition: transform 0.2s linear;

    height: 18px;
    width: 24px;
}

.checkbox:checked + .label .ball{
    transform: translateX(0px);
}

.fa-moon{
    width: 10px;
    color:#f1c40f ;
}
.fa-sun{
    margin-left: 12px;
    width: 0px;
    color: #f1c40f;
}