@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body {
    font-family: "Montserrat", sans-serif;
    text-align: center;
    background-image: url("./background.png");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: 0%;
}

.game {
    backdrop-filter: blur(2px) brightness(50%);
    border: 1px solid transparent;
    border-radius: 20px;
}

p, button {
    color: white;
}

#waterBottleContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 425px;
    width: 425px;
    margin: 0 auto;
}

#waterBottle {
    width: auto;
    height: 400px;
    cursor: pointer;
    transition: all 0.1s ease;
    justify-content: center;
    align-items: center;
}

.big {
    font-size: 30px;
}

button {
    display: block;
    margin: 0 auto;
    width: 400px;
    background-color: transparent;
    border: 1px solid white;
    border-radius: 5px;
    margin-bottom: 3px;
    cursor: pointer;
}

button:disabled {
    background-color: #ffffff6e;
    cursor: default;
}

#cheaterDisplay {
    color: red;
    font-size: 50px;
    margin-bottom: 5px;
}

a:link, a:visited, a:hover, a:active {
    color: rgb(56, 215, 255);
}