/* reset default values */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
    font-family: 'Urbanist';
    letter-spacing: 1px;
    font-style: normal;
    line-height: 1.5;
    font-weight: 500;
    font-size: 16px;
    height: 100%;
    margin: 0;
}

p {
    margin: 0;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    outline: none;
}

img {
    max-width: 100%;
    display: block;
}

:focus {
    outline: 0;
}


/* page starts */
.a9-container {
    background-color: rgb(0, 0, 0);
    padding: 20px;
    display: grid;
    height: 100%;
}

.a9-body {
    color: rgb(255, 255, 255);
    justify-content: center;
    display: flex;
}

.a9-center {
    flex-direction: column;
    text-align: center;
    max-width: 600px;
    display: flex;
    width: 100%;
}

.a9-header {
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
    display: flex;
}

.a9-header a {
    max-width: 110px;
}

.a9-header h1 {
    font-weight: 900;
    font-size: 28px;
    line-height: 1;
}

.a9-header h2 {
    letter-spacing: 1px;
    font-weight: 500;
    font-size: 16px;
    margin-top: 8px;
    text-transform: uppercase;
}

.a9-content {
    margin-top: 80px;
}

.a9-content__title {
    text-shadow: 0 0 5px #ff005e, 0 0 10px #ff005e, 0 0 20px #ff005e, 0 0 40px #ff005e, 0 0 80px #ff005e;
    animation: glow 1.5s infinite alternate;
    text-transform: uppercase;
    position: relative;
    font-weight: bold;
    overflow: hidden;
    font-size: 34px;
}

.a9-footer {
    color: rgb(107, 107, 107);
    margin-top: auto;
    font-size: 10px;
}

@keyframes glow {
    0% {
        text-shadow: 0 0 5px #ff005e, 0 0 10px #ff005e, 0 0 20px #ff005e, 0 0 40px #ff005e, 0 0 80px #ff005e;
    }
    100% {
        text-shadow: 0 0 10px #00d4ff, 0 0 20px #00d4ff, 0 0 40px #00d4ff, 0 0 80px #00d4ff, 0 0 160px #00d4ff;
    }
}

@media only screen and (max-device-width: 1023px) and (orientation: landscape) {
    html, body {
        height: auto;
    }

    .a9-container {
        height: auto;
        min-height: 480px;
    }

    .a9-header {
        margin-top: 0;
    }

    .a9-content {
        margin-top: 40px;
    }
}
/* page ends */