body{
    background-color: powderblue;
    font-size: 1em;
    text-align: center;
}

.Window{
    position: center top;
    width: auto;
    height: auto;
    max-height:100vh;
    max-width:100vw;
    border: solid black 5px;
    border-radius: 10%;
    background-color: white;
    place-content: center top;
    margin: 5%;
}

.StatusBar{
    display: grid;
    height: auto;
    width:100%;
    border: solid black 5px;
    border-radius: 10%;
    background-color: white;
    justify-content: center;
    place-content: center top;
    grid-template-columns: 30% 30% 30%;
    background-color: yellow;
}

.Field{
    margin-top:0%;
    width:100%;
    height:100%;
    background-color: teal;
    position: relative;
}

.label{
    font-size: 3em;
    font-weight: bold;
}

.metric{
    font-size: 3em;
    font-weight: bold;
}

#bottle {
    width: 200px;
    height: 200px;
    background-color: blue;
    border-radius: 100px;
    margin: 0 auto;
    line-height: 200px;
    user-select: none;
    color:white;
  }
#bottle:hover{
    cursor:pointer;
}

#score {
    color: green;
  }
#timer {
    color: red;
  }
#highscore {
    color: cyan;
}

