@font-face {
    font-family: baskerville-old-face-regular;
    src: url(../fonts/BASKVILL.TTF);
}

html {
    overflow: hidden;
    position: fixed;
}

body {
    overflow: hidden;
    padding: 0;
    margin: 0;
}

#wrapper {
    width: 1920px;
    height: 1280px;
    background: url(../images/bg-gpo.png);
    overflow: hidden;
    font-family: baskerville-old-face-regular;
}

.no-gpo-bg {
    width: 1920px;
    height: 1280px;
    position: absolute;
    top: 0px;
    left: 0px;
    background: url(../images/bg.jpg);
}

.loader {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#main-loader-wrapper {
    position: absolute;
    z-index: 99;
    width: 100vw;
    height: 100vh;
    background-color: white;
}

#main-loader {
    position: absolute;
    top: calc((100vh - 120px) / 2);
    left: calc((100vw - 120px) / 2);
}

.ssaver {
    position: relative;
}

.section {
    overflow: hidden;
    position: absolute;
    top: 0px;
    left: 0px;

    width: 1920px;
    height: 1280px;
}

.navbar {
    position: absolute;
    top: 0px;
    left: 0px;

    width: 1920px;
    height: 90px;

    background-color: #b5b1a9;
    color: white;

    box-shadow: 0px 5px 14px 0px rgba(0,0,0,0.75);
}

h1 {
    color: white;
    font-size: 61px;
    line-height: 90px;
    padding-left: 50px;
    margin: 0;
}

h2 {
    color: white;
    font-size: 40px;
}

.reset-button {
    position: absolute;
    top: 0px;
    right: 60px;
    padding: 21px;
}

.cursor-pointer {
    cursor: pointer;
    touch-action: none;
}

p {
    font-size: 40px;
    color: black;
}

.fab {
    position: absolute;
    right: 60px;
    bottom: 50px;
    z-index: 99;
}

.task-counter {
    position: absolute;
    top: 19px;
    left: 770px;
}

.task-counter-num {
    position: absolute;
    height: 52px;
    width: 52px;

    border: 1px solid white;
    border-radius: 26px;
    margin-right: 20px;
    display: inline-block;

    background-color: #b5b1a9;
    color: white;

    text-align: center;
    font-size: 30px;
    line-height: 52px;
}

.task-counter-num:nth-child(2) {
    left: 72px;
}

.task-counter-num:nth-child(3) {
    left: calc(2 * 72px);
}

.task-counter-num:nth-child(4) {
    left: calc(3 * 72px);
}

.task-counter-num:nth-child(5) {
    left: calc(4 * 72px);
}

.task-counter-tick {
    position: relative;
    top: -45px;
}

.task-active {
    background-color: white;
    color: #b5b1a9;
}

.timer {
    position: absolute;
    top: 123px;
    right: 42px;
}

.timer-hand {
    position: absolute;
    top: 52px;
    left: 113px;
}

.timer-hand-puzzle {
    position: absolute;
    top: 52px;
    left: 113px;
}

.timer-fill {
    position: absolute;
    top: 0px;
    left: 0px;
    display: none;
}