@font-face {
    font-family: 'RedHatRegular';
    src: url('public/assets/fonts/ariblk.ttf') format('truetype');
}


body {
    margin: 0;
    padding: 0;
    color: rgba(255, 255, 255, 0.87);
    background-color: #000000;
}

#app {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}


.SwitchLabel {
    display: block;
    cursor: pointer;
    width: 100px;
    height: 40px;
    background-color: #4d4d4d;
    border-radius: 40px;
    position: relative;
    transition: 0.2s;
}

.SwitchLabel .SwitchButton {
    position: absolute;
    top: -5px;
    left: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: 0.2s;
    background-color: #8f8f8f;
}

.SwitchCheckbox:checked + .SwitchLabel {
    background-color: #4d4d4d;
}

.SwitchCheckbox:checked + .SwitchLabel .SwitchButton {
    left: calc(100% - 50px);
    background-color: #7db342;
}