@font-face {
    font-family: 'minecraftRegular';
    src: url('fonts/MinecraftRegular-Bmg3.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

body {
    background-color: rgb(0, 0, 0);
    align-items: center;
    justify-content: center;
    font-family: 'minecraftRegular', monospace !important;
    color: rgb(255, 255, 255);
}

.video-background {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    display: block;
    z-index: -5;
opacity: 1;
}

.burger{
    float: right;
    margin-right: 1rem;
    margin-top: 1rem;
    cursor: pointer;
    width: 30px;
    border-radius: 10px;
}

.burger:hover {
    opacity: 0.5;
}


.boilerHeader {
    width: 30%;
    margin: auto;
    display: flex;
    text-align: center;
    justify-content: center;
    padding-top: 15%;

}
.hero {
    margin: auto;
    display: flex;
}

.logo {
    width: 100px;
    margin: auto;
    display: flex;
}

.loading {
    animation-name: spin;
    animation-iteration-count: infinite;
    animation-duration: 5s;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(359deg);
    }
}

#renderCanvas {
    width: 100%;
    height: 100%;
}

#canvasZone {
    width: 100%;
    height: 100%;
}

canvas:focus {
    outline: none;
}