body {
    margin: 0px;
    font-family: "Museo Slab 300";
    color: black;
    font-size: 12px;
}

div,
input,
textarea {
    box-sizing: border-box;
}

.main {
    text-align: center;
}

.title {
    font-size: 50px;
    margin: 20px;
}

.note {
    border: 1px solid cornflowerblue;
    border-radius: 20px;
    margin: 20px;
    padding: 20px;
    font-size: 50px;
    color: cornflowerblue;
    box-shadow: 0px 5px 10px 2px black;
    display: inline-block;
}

.note .text {
    display: inline-block;
}

.note .value {
    display: inline-block;
}

.game {
    position: relative;
}

.hole {
    height: 150px;
    width: 200px;
    border: 1px solid black;
    background: grey;
    position: absolute;
    transform: translateX(-50%);
    border-radius: 50%;
    box-shadow: inset 0px 50px 10px 10px black;
}

.h1 {
    top: 1vh;
    left: 1vw;
}

.h2 {
    top: 1vh;
    left: 1vw;
}

.h3 {
    top: 1vh;
    left: 1vw;
}

.h4 {
    top: 1vh;
    left: 1vw;
}

.h5 {
    top: 1vh;
    left: 1vw;
}

.h6 {
    top: 1vh;
    left: 1vw;
}

.h7 {
    top: 1vh;
    left: 1vw;
}

.mole {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 85px;
    color: red;
    cursor: pointer;
    padding: 33px 58px;
}

.dead-mole {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 85px;
    color: white;
}

.popup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 100px;
    border: 5px solid red;
    color: red;
    background: white;
    box-shadow: 0px 5px 10px 2px black;
    border-radius: 20px;
    display: inline-block;
    padding: 30px 60px;
}

.decoy {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 85px;
}








