*{
    margin: 0;
    padding: 0;
}

body, .container{
    height: 100vh;
    background: rgb(255,160,235);
    background: linear-gradient(36deg, rgba(255,160,235,1) 30%, rgba(111,239,254,1) 73%);
}

.container{
    display: flex;
    flex-direction: column;
}

.header{
    display: flex;
    justify-content: center;
}

.title{
    font-size: min(13vw, 80px);
    margin-top: 10px;
}

.info{
    font-size: 24px;
    margin-top: 15px;
    display: flex;
    justify-content: space-around;
}

.levelSelect{
    display: flex;
    justify-content: space-between;
}

select{
    text-align: center;
    font-weight: bold;
    background: rgb(160,255,169);
    background: linear-gradient(36deg, rgba(160,255,169,1) 30%, rgba(48,254,6,1) 73%);
}

.main{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.box{
    width: 500px;
    height: 500px;
}

.experts{
    width: 800px;
}

@media screen and (max-width: 800px) {
    .box {
        width: 300px;
        height: 300px;
    }

    .experts{
        width: 375px;
    }
    .info{
        font-size: 16px;
        flex-direction: column;
        align-items: center;
    }
  }

.row{
    display: flex;
}

.easy{
    height: 11.11%;
}

.medium, .expert{
    height: 6.25%;
}

.bomb{
    width: 100%;
    height: 100%;
}

button{
    border: solid black 1px;
    height: 100%;
    width: 100%;
    background: rgb(160,255,169);
    background: linear-gradient(36deg, rgba(160,255,169,1) 30%, rgba(48,254,6,1) 73%);
    cursor: pointer;
}

button:hover{
    background: rgb(160,240,255);
    background: linear-gradient(36deg, rgba(160,240,255,1) 30%, rgba(6,57,254,1) 73%);
}

.revealed{
    cursor:default;
}

.hidden{
    display: none;
}

#bottom, #bottomWin{
    position: fixed;
    bottom: 100px;
    left:50%;
    transform: translate(-50%, -50%);
}

#reset, #reset2{
    width: 100px;
    height: 30px;
    font-size: 16px;
    font-weight: bold;
    background-color: rgb(14, 155, 221);
}