.clickBox,
.playStart {
    background-color: black;
    width: 90%;
    height: 85%;
    margin-bottom: 10px;
    border-radius: 20px;
    margin: auto;
    position: relative;
    flex: 1;
}

.numberOfClicks,
.timerDiv {
    display: inline-block;
}

.modal {
    display: none;
    position: fixed;
    z-index: 100;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.667);
    /* Black w/ opacity */
}

.modalC {
    background-color: white;
    margin: auto;
    padding: 10px;
    border: solid;
    border-width: 1px;
    border-color: black;
    width: 70%;
    position: relative;
    height: 60%;
    background-color: rgb(15, 15, 17);
    box-shadow: 0px 0px 10px #000000b0;
    border-radius: 30px;
}

.close {
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;

}

.close {
    position: absolute;
    top: 1vh;
    right: 2vw;
    font-size: 40px;
    user-select: none;
}

.sidebar {
    background-image: linear-gradient(to top right, rgb(157, 255, 0), rgb(255, 191, 0));
    width: 18vw;
    min-width: 200px;
    margin-right: 10px;
    position: fixed;
    top: 70px;
    left: 0;
    height: 100%;

}

body {
    padding-left: max(20vw, 200px);
    background-color: #1b1b1bfb;

}

.container {
    width: 50vw;
    background-color: rgb(39, 39, 39);
    height: 440px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;


}

.numberOfClicks,
.timerDiv,
.highScore {
    padding: 10px;
    font-size: 30px;
    background-image: linear-gradient(to top right, rgb(157, 255, 0), rgb(255, 191, 0));
    flex: 1;
    max-width: 20%;
    margin-right: 10px;
    font-family: 'Arial';
    border-radius: 20px;
    margin-top: 10px;
    margin-bottom: 10px;




}

.divFlex {
    display: flex;
    margin-bottom: 0px;
    justify-content: center;
    border-bottom-width: 5px;
    border-bottom-style: solid;
    border-bottom-color: #1b1b1bfb;
}

.sidebar {
    display: flex;
    flex-direction: column;
    padding-top: 100px;
    box-shadow: 15px 0px 15px rgba(0, 0, 0, 0.34);




}

.modeButton {
    width: 90%;
    height: 35px;
    margin-bottom: 10px;
    background-color: #1b1b1bfb;
    border: none;
    border-radius: 10px;
    flex-shrink: 0;
    margin-left: 10px;
    font-size: 20px;
    color: rgb(255, 225, 0);
    box-shadow: 0px 0px 4px black inset;
    transition: background-color 0.3s;



}

.header {
    position: fixed;
    top: 0;
    left: max(18vw, 200px);
    right: 0;
    background-color: red;
    height: 70px;
    background-image: linear-gradient(to bottom left, rgb(255, 251, 0), orange);
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.388);

}

body {
    padding-top: 90px;

}

.header2 {
    position: fixed;
    top: 0;
    left: 0;
    height: 70px;
    background-color: rgb(31, 31, 31);
    width: max(18vw, 200px);
    font-size: 30px;
    color: rgb(255, 221, 0);
    text-align: center;
    padding-top: 15px;


}

.modeButton:hover {
    background-color: rgb(46, 46, 46);
    cursor: pointer;


}



.clickStartText {
    color: white;
    position: absolute;
    font-family: 'Arial';
    top: 45%;
    left: 40%;
    z-index: 100000;
    text-align: center;
    user-select: none;
}

.modalClicks {
    font-size: 40px;
    color: rgb(255, 204, 0);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Arial';
    user-select: none;

}

.row2 {
    display: flex;
    width: 95%;
    height: 500px;
    margin: auto;
    position: relative;
}

.playStart {
    position: absolute;
    color: rgba(156, 156, 156, 0.534);
    font-family: 'Arial';
    font-size: 20px;
    text-align: center;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    align-content: center;
    user-select: none;
}

.logButton {
    width: 100px;
    height: 30px;
    font-family: 'Arial';
    font-size: 15px;
    background-color: rgb(31, 31, 31);
    border-radius: 15px;
    color: rgb(255, 208, 0);
    border: none;

}

.title {
    font-family: 'Arial';
    color: rgb(31, 31, 31);
    flex: 1;
    justify-content: center;
    display: flex;
    font-weight: bolder;
    min-width: 200px;



}

.header {
    display: flex;
    flex-direction: row;
}

.logDiv {
    display: flex;
    align-items: center;
    justify-content: right;
    width: 300px;
    padding: 10px;


}

@media screen and (max-width:500px) {

    .sidebar,
    .header,
    .header2 {
        display: none;
    }


    body {
        padding-left: 0px;
    }

    .container {
        width: 90vw;
        height: 70vh;
    }

}