@font-face {
    font-family: 'zabars';
    src: url('assets/fonts/zabars.ttf');
}

@font-face {
    font-family: 'boogaloo';
    src: url('assets/fonts/Boogaloo-Regular.ttf');
}

.d-none {
    display: none !important;
}

body {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: url('assets/img/background.jpg');
    background-position: bottom;
    background-size: cover;
    height: 100vh;
    background-repeat: no-repeat;
    font-family: 'boogaloo', 'Arial Narrow Bold', sans-serif;
    user-select: none;
}

.rotate-background-color {
    display: none;
}

.volume {
    position: absolute;
    top: 10px;
    right: 50px;
    z-index: 5;
    height: 25px;
    cursor: pointer;
}

.intro {
    position: absolute;
    z-index: 2;
    height: 100%;
    width: 100%;
}

.touch {
    position: absolute;
    height: 50px;
    bottom: -60px;
    right: 10px;
    left: 10px;
    display: flex;
    justify-content: space-between;
}

.touch-buttons {
    display: none;
}

.info {
    position: absolute;
    z-index: 5;
    right: 10px;
    top: 10px;
    height: 25px;
    cursor: pointer;
}

.end-game {
    position: absolute;
    object-fit: cover;
    height: 100% !important;
    width: 100% !important;
    z-index: 3;
}

.button {
    position: absolute;
    top: 30px;
    z-index: 3;
    font-size: 32px;
    font-family: 'boogaloo', Arial, Helvetica, sans-serif;
    font-weight: 900;
    letter-spacing: 5px;
    cursor: pointer;
    color: #F78F34;
    transition: all 225ms ease-in-out;
}

.button:hover {
    color: #5A1F07;
    text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
}

h1 {
    font-size: 50px;
    margin-bottom: 10px;
    margin-top: 10px;
    font-family: 'zabars', Arial, Helvetica, sans-serif;
    letter-spacing: 3px;
    text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
    
}

canvas {
    background-color: black;
    display: block;
    z-index: 0 !important;
}

.relative {
    position: relative;
    display: flex;
    justify-content: center;
}

.fullscreen {
    position: absolute;
    height: 20px;
    bottom: 20px;
    right: 20px;
    cursor: pointer;
    z-index: 2;
}

.endboss-health {
    position: absolute;
    right: 20px;
    top: 70px;
    color: aliceblue;
    display: flex;
    gap: 10px;
    font-size: 35px;
    text-shadow: 0px 0px 5px black;
}

.endboss-health img {
    height: 50px;
}

.fullscreen:hover, .volume:hover, .info:hover {
    scale: 1.2;
}

.description-container {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.8);
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    z-index: 4;
}

.description {
    margin-top: 10px;
    display: flex;
    gap: 5px;
}

.border-color {
    border: 2px solid black;
    padding: 2px;
    background-color: white;
    border-radius: 10%;
    height: 20px;
}

h3 {
    margin: 0;
    align-self: center;
    font-size: 20px;
    font-weight: 500;
    color: rgb(238, 231, 231);
}

h2 {
    margin: 0;
    align-self: center;
    font-size: 25px;
    font-weight: 500;
    color: rgb(253, 254, 248);
    text-decoration: underline;
}