@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@200;300;400;500;700;900&display=swap');

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track-piece {
    background-color: #393939;
}

::-webkit-scrollbar-thumb {
    background-color: #FFFFFF;
}

html {
    scrollbar-color: #ffffff #393939;
    scrollbar-width: thin;
}

body {
    position: relative;
    margin: 0;
    font-family: "Source Sans Pro";
    color: white;
    background: #000000;
    font-weight: 200;
    text-shadow: 0px 0px 5px black;
    width: 100vw;
    height: 100vh;
}

#container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
}

#schedule-categories {
    display: flex;
    padding: 112px;
}

.schedule-category{
    width: 100%;
}
.schedule-category-object {
    position: relative;
    border: white 1px solid;
    padding: 32px;
    margin: 32px;
    animation: loadIn 0.2s ease;
}

.schedule-category-title{
    text-align: center;
    animation: loadIn 0.2s ease;
}

.schedule-category-object-move-button{
    position: absolute;
    top:8px;
    right:32px;
    animation: loadIn 0.2s ease;
}

.schedule-category-object-completed-button{
    position: absolute;
    top:8px;
    right:8px;
    animation: loadIn 0.2s ease;
}

#home-link {
    position: absolute;
    top: 40px;
    right: 40px;
}

#home-link-a {
    color: white;
    text-decoration: none;
    font-size: 32px;
    font-weight: 400;
}

#home-icon {
    width: 32px;
    height: 32px;
}

#stopwatch-button {
    position: absolute;
    top: 40px;
    left: 40px;
}

#stopwatch-icon {
    width: 32px;
    height: 32px;
}

#stopwatch-sidebar {
    position: absolute;
    background: #000000;
    width: 480px;
    height: calc(100vh - 2px);
    top: 0px;
    left: -482px;
    border: transparent 1px solid;
    transition: left 1s ease, border 1s ease;
    text-align: center;
}

.stopwatch-control-button-row{
    display: flex;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
#stopwatch-control-button-row-1{
    bottom:192px;
}

.stopwatch-control-button {
    position: relative;
    padding: 16px;
    border: 1px white solid;
    color:white;
    background-color: black;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.stopwatch-control-button:hover {
    color:black;
    background-color: white;
}

#stopwatch-progress-bar{
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    top: calc(50vh - 32px);
    width:320px;
    height:32px;
    border: white 1px solid;
}

#stopwatch-progress-bar-infill{
    position: absolute;
    top:0;
    left:0;
    width: 0px;
    height:32px;
    background: white;
    transition: width 0.1s linear;
}

#stopwatch-progress-bar-text{
    position: absolute;
    border: white 1px solid;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 248px;
    padding: 8px;
}

@keyframes loadIn {
    from {
        transform: translateY(16px);
        opacity: 0;
    }
    to {
        transform: translateY(0px);
        opacity: 1;
    }
}