body {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    margin: 0;

    min-height: 600px;
}

#welcome {

    font-weight: 100;
    font-size: 7vh;
    color: white;
    letter-spacing: 0.03em;
    position: absolute;
    top: 50%;
    left: 50%;
    text-align: center;
    transform: translate(-50%, -50%) translateY(-7vh);
    z-index: -1;
}


.buttons {
    position: absolute;
    display: flex;
    justify-content: center;
    transform: translateX(50%);
    right: 50%;
    top: 1px;


}

.buttons button {
    padding: 0.75rem 1.5rem;
    border: none;
    font-size: 1.2rem;
    background-color: rgb(53, 52, 52)
}

#Tips {
    order: 1;
    background-color: rgb(53, 52, 52);
    color: rgb(70, 68, 68);
}

#Home {

    order: 2;
    background-color: rgb(53, 52, 52);
    color: white;
}

#Random {
    order: 3;
    background-color: rgb(53, 52, 52);
    color: rgb(70, 68, 68);
}


.btn:hover {
    color: rgb(255, 255, 255) !important;
}

#headbar {
    position: relative;

    width: 100%;
    height: 50px;
    background-color: rgb(53, 52, 52);


}

#headbarborder {
    position: relative;
    background-color: rgb(48, 48, 48);
    width: 100%;
    height: 1.5px;

}

#bg-video {
    position: fixed;
    top: 0;
    z-index: -2;
}

#tos {
    position: absolute;
    top: 50%;
    left: 50%;
    text-align: center;
    transform: translate(-50%, -50%) translateY(-7vh);
    width: fit-content;
    padding: 10rem 10rem;
    background-color: white;

    padding: 40px;
    border-radius: 10px;
    text-align: center;
}

#tosOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(8px);
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

#tos button {
    border: none;
    padding: 0.5rem 1rem;
}
#tosbutton {
     display: flex;
    flex-wrap: nowrap;
}
#Accept {
    background-color: rgb(39, 39, 154);

}

#Decline {
    background-color: rgb(74, 74, 74);

}

