* {
    color: white;
    padding: 0;
    margin: 0;
    user-select: none;
}

body {
    position: absolute;
    top: 0px;
    width: 100%;
    height: 100%;
    background-image: url(../background.jpg);
}

#main {
    position: absolute;
    top: 0px;
    width: 100%;
    min-height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#main h1 {
    display: flex;
    text-align: center;
    font-size: 35px;
}

#main ul {
    display: inline-flex;
    list-style: none;
}

#main ul li {
    margin: 10px;
    min-width: fit-content;
}

.button {
    padding: 5px 15px;
    border-color: white;
    border: 2px white solid;
    border-radius: 100px;
}

.button:default {
    border-color: white;
}

.button:hover {
    border-color: gray;
    color: gray;
    cursor: pointer;
}

.button:active {
    cursor:grabbing;
    
}

#countdown {
    font-size: 100px;
}