html,
body {
    margin: 0;
    padding: 20;
    font-family: 'Asap',sans-serif;
    background-color: rgb(244, 255, 254);
}

.main {
    position: relative;
    height: 100%;
}

.gameover {
    position: relative;
    height: 100%;
    text-align: center;
    font-size: 60px;
    font-weight: 600;


}

canvas {
    display: block;
}

.btn {
    margin: 4 2 4 2;
    height: 80px;
    width: 100%;
    font-family: 'Asap',sans-serif;
    font-weight: 600;
    border-radius: 10cm;
    font-size: large;
}

.btn:active {
    border: 2px;
}


#btnStart {
    color: #444444;
    border-color: #27f47c;
    background-color: rgb(148, 237, 148);
}

#btnStart:active {
    background-color: rgb(217, 255, 217);
    color: #0d4926;
    border-color: #222222;
}


.buttonSmall {
    height: 40px;
    margin: 2 2 2 2;

}

.textBox {
    margin: 4 2 4 2;
    height: 20px;
    vertical-align: middle;
    text-align: center;
    width: 100%;
    background-color: #ffffe0;
    color: #b3a45c;
    padding-top: 6px;
    font-size: 14;
}


.textBoxStatus {
    margin: 4 2 4 2;
    height: 20px;
    vertical-align: middle;
    text-align: center;
    width: 100%;
    color: rgb(154, 170, 216);
    padding-top: 6px;
    font-size: 14;
}


.txtInstructions {
    margin: 4 2 4 2;
    height: 20px;
    vertical-align: middle;
    text-align: center;
    width: 100%;
    color: rgb(37, 52, 96);
    padding-top: 6px;
    font-size: 18;
}

.inputBox {
    margin: 4 2 4 2;
    height: 40px;
    vertical-align: middle;
    text-align: center;
    width: 100%;
    background-color: #ffffff;
    color: #222222;
    border-color: azure;
    padding-top: 6px;
    font-size: 24;
    margin-bottom: 20px;
    border-radius: 0.7cm;

}


#bottom {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 10 10 10 10;
}

#colorBlock {
    width: 140;
    height: 140;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
    margin-bottom: 40px;
    background-color: rgb(162, 48, 48);
    align-items: center;
    text-align: center;
    border-radius: 70px;
    font-size: 10pt;
    display: none;
    justify-content: center;
    align-items: center;


}

#colorBlockText {}

#scoreFinal{
    font-size: 18pt;
    margin-bottom: 20px;

}


#giftImage{
    position: relative;
    bottom: 240px;
    left: 50%;
    transform: translateX(-50%);
    animation: blinker 1.5s ease-in-out infinite;
}

@keyframes blinker {
    50% {
      opacity: 0.5;
    }
  }