* {
    box-sizing: border-box;
}

body {
    padding: 0;
    margin: 0;
    background: #000;
}

#parent {
    height: 100vh;
    width: 100%;
    background-image: url(assets/game-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
}

form {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
}

form>h1 {
    font-size: 40px;
    text-align: center;
    font-family: 'Popins', Arial, Helvetica, sans-serif;
    -webkit-text-stroke: 1px;
    -webkit-text-stroke-color: #485aff;
    -webkit-text-stroke-width: 2px;
    color: #001aff;
    animation: movingTop 0.5s ease-in-out infinite alternate;
}

@keyframes movingTop {
    from {
        transform: translateY(-7px);
    }

    to {
        transform: translateY(7px);
    }
}

form>input,
form>button {
    width: 230px;
    padding: 10px 5px;
    border-radius: 5px;
}

form>input {
    border: 1px solid #cfcc00;
}

form>input:focus {
    outline: none;
    border: 1px solid yellow;
}

form>button {
    background: #b6b300;
    color: #fff;
    font-weight: bold;
    border: 1px solid #cfcc00;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 20px;
}

/* 008f1f - success
007eb8 - info
b80000 - danger */



form>button:active {
    transform: scale(0.9);
}

/* canvas{
    position: fixed;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
} */