@font-face {
    font-family: "Comfortaa";
    src: url("./fonts/Body/comfortaa/Comfortaa-Light.ttf");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Comfortaa";
    src: url("./fonts/Body/comfortaa/Comfortaa-Bold.ttf");
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: "Lonely Coffee";
    src: url("./fonts/Header/lonely_coffee/Lonely\ Coffee.ttf");
    font-weight: normal;
    font-style: normal;
}

body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    color: #bbb;
    background-color: #000;
    font-family: Comfortaa, Arial, Helvetica, sans-serif;
    font-size: 20px;
    line-height: 1.4;
}

#onboarding b {
    color: #fff;
}

canvas {
    margin: auto;
    position: absolute;
    /* left: 50%;
    top: 50%;
    transform: translate(-50%, -50%); */
    z-index: -1;
}

#p5_loading {
    display: none;
}

#onboarding-container {
    margin: auto;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 10;
}

#onboarding {
    margin: auto;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

#onboarding-text {
    margin: 0 auto;
    text-align: center;
    width: 512px;
}

button {
    margin: auto;
    display: block;
    padding: 0;
    text-align: center;
    width: 300px;
    height: 60px;
    border-radius: 5px;
    border: none;
    color: #fff;
    text-shadow: 3px 4px #000;
    background-color: #68b956;
    font-family: Lonely Coffee, Arial, Helvetica, sans-serif;
    font-size: 36px;
}

button:hover {
    cursor: pointer;
    border: 2px #68b956 solid;
    /* text-shadow: 4px 4px #29AE80; */
    color: #68b956;
    background-color: #000;
}

#loading-button {
    margin: 50px auto 0 auto;
    color: #aeaeae;
    background-color: #4f4f4f;
}

#loading-button:hover {
    cursor: default;
    border: none;
    text-shadow: 3px 4px #000;
    color: #aeaeae;
    background-color: #4f4f4f;
}

#play-button {
    margin: 50px auto 0 auto;
    display: none;
}

#restart-container {
    position: absolute;
    top: 25px;
    width: 100%;
    display: none;
}

#gameplay-container {
    margin: auto;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: none;
}

#speech-bubble-container {
    position: absolute;
    bottom: 25px;
    width: 100%;
    display: none;
}

#speech-bubble {
    margin: 0 auto;
    display: block;
    padding: 3px 25px;
    border-radius: 5px;
    box-shadow: 10px 10px 0 #000;
    color: #6b6b6b;
    background-color: #fff;
    width: 512px;
}

#speech-bubble b {
    color: #000;
}

#nice-shot-container {
    margin: auto;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 260px;
    height: 60px;
    line-height: 60px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 10px 10px 0 #000;
    text-align: center;
    display: none;
}

#nice-shot {
    color: #000;
    font-family: Lonely Coffee, Arial, Helvetica, sans-serif;
    font-size: 36px;
}