
:root {
    --primary-color: #00d1b2;
    --danger-color: #e04ef4;

    --az-gray: #ebf0ea;
    --az-green: #00d900;
    --az-pink: #e04ef4;
    --az-purple: #9e72c6;
    --az-purple-ligth: #d6a6ff;
    --az-green-drak: #354b45;
    --az-green-ligth: #98b0aa;
    --az-black: #000000;
    --bulma-footer-background-color:var(--az-black) !important;
}

html, body  {
     height: 100%;
     width: 100%;
     cursor: crosshair;
        background-color: black;
        background-image: linear-gradient(to top, rgba(46, 204, 113, 0.2) 1%, rgba(255, 255, 255, 0) 0),
            linear-gradient(to right, rgba(46, 204, 113, 0.2) 1%, rgba(255, 255, 255, 0) 0);
        background-size: 50px 50px;
        font-family: 'Aldrich', monospace;
 }

 .footer {
     background-color: var(--az-black);
     padding: 1.5rem 1.5rem 1.5rem;
 }

#app {
    box-sizing: border-box;
    height: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.title {
    font-size: 5rem;
    color: var(--az-gray);
    font-family: 'Bungee Outline', cursive;
}

.subtitle {
    color: var(--az-gray);
    font-size: 3rem;
}

.btn {
    background: transparent;
    cursor: pointer;
    color: #e04ef4;
    font-weight: bold;
    padding: 15px 60px;
    border-radius: 6px;
    border: 3px solid #e04ef4;
    transition: all 0.3s ease-out;
}

.btn:hover {
    background: #e04ef4;
    color: black;
}

#btn-start {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#launch-screen {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    visibility: hidden;
    position: absolute;
    z-index: 10;
    background-image: linear-gradient(45deg, black, rgba(46, 204, 113, 0.2));
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.320, 1.275);
}

#launch-screen.is-visible {
    opacity: 1;
    visibility: visible;
}

#launch-screen-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    padding: 50px;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.320, 1.275);
}





