*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html body{
    width: 100%;
    height: 100%;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.container{
    width: 100vw;
    height: 100vh;
    background-color: rgb(65, 255, 230);
    display: flex;
    justify-content: center;
    align-items: center;
}
.subcontainer{
   
    overflow: hidden;
    width: 80%;
    height: 80%;
    
    /* backdrop-filter:blur(10px); */
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.507);
}

.nav{
    width: 100%;
    height: 80px;
    background-color: rgb(110, 110, 110);
    box-shadow: 4px 0 10px #212121;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 40px;
    padding-right: 40px;
}

.elem{
    padding: 20px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.hit{
    font-weight: 800;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: white;
    border-radius: 50px;
    color: black;
}

.gamecontainer{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    width: 100%;
    height: calc(100% - 80px);
    background-color:rgba(150, 150, 150, 0.767);
}

.bubble{
    box-shadow: 0 0 10px orangered;
    width: 60px;
    height: 60px;
    background-color: white;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.2s ease-in-out;
    font-weight: 700;
    font-size: 20px;
    
}

.bubble:hover{
    background-color: orangered;
    color: white;
}

.results{
    color: white;
    font-weight: 800;
    font-size: 25px;
}
.rcon{
    width: 50%;
    height: 50%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
}
#start{
   
    width: 150px;
    height: 50px;
    background-color: crimson;
    color: white;
    font-weight: 600;
    font-size: 20px;
    border: none;
    border-radius: 20px;
    transition: 0.3s ease-in-out;
    cursor: pointer;
}

#start:hover{
    scale: 1.1;
    background-color: white;
    border: 2px solid crimson;
    color: #212121;
}