body {
    font-family: sans-serif;
    overflow: hidden;
    width: 1920px;
    height: 1080px;
    background-color: black;
    margin: 0;
    box-sizing: border-box;
}

.current {
    background-color: crimson;

    position: absolute;
    top: 50px;
    left: 50px;

    width: 1125px;
    height: 825px;

    box-sizing: border-box;
    padding: 20px 50px;

    color: #fff;
}
.current.free{
    background-color: rgb(99, 212, 64);
}

.buttons{
    position: absolute;
    bottom: 50px;
    right: 50px;
}
.buttons button{
    background-color: rgba(0, 0, 0, 0.404);
    border: none;
    color: lightgray;
    font-size: 28px;
    padding: 20px 58px;
    margin: 10px;
}

.timeline {
    width: 670px;
    height: 980px;
    background-color: #fff;

    position: absolute;
    top: 50px;
    right: 50px;
}

.reserve {
    position: absolute;
    top: 875px;
    right: 745px;
    background-color: darkgoldenrod;
    box-sizing: border-box;
    font-size: 26px;
    padding: 49px 70px;
}

#modal-backdrop {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 1920px;
    height: 1080px;
    background-color: rgba(0, 0, 0, 0.619);
}

#qr-modal {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    width: 500px;
    height: 580px;
    margin: auto;
    background-color: #fff;
    border-radius: 5px;
}
#qr-modal p{
    text-align: center;
    font-size: 34px;
    padding: 10px;
    margin: 0;
}
#qr-modal img{
    width: 450px;
    height: 450px;
    border: 1px solid black;
    border-radius: 5px;
    padding: 5px;
    margin: 25px;
    box-sizing: border-box;
}

h1{
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 10px;
}
h2{
    font-size: 34px;
    font-weight: 600;
    margin: 0;
    margin-bottom: 40px;
}
.current div p{
    font-size: 30px;
    margin: 5px 0;
    opacity: 0.85;
    font-weight: 300;
}
.timeline-item p{
    display: inline-block;
    width: 11%;
    box-sizing: border-box;
    text-align: right;
    font-size: 28px;
}
.timeline-item hr{
    display: inline-block;
    height: 1px;
    border: none;
    background-color: black;
    width: 86%;
    box-sizing: border-box;
}
.reservation{
    position: absolute;
    left: 62px;
    right: 0;
    margin: 0 auto;
    width: 576px;
    height: 65px;
    background-color: rgb(37, 111, 180);
    opacity: 0.95;
}
.reservation p{
    margin: 18px 10px;
    font-size: 24px;
    color: #fff;
}
.reservation.tacheci{
    background-color: crimson;
    height: 900px;
}
.occupier{
    position: absolute;
    bottom: 50px;
    left: 50px;
    font-size: 30px;
    font-weight: 300;
}