:root {
    --accent: #5d0391;
    --hover: #720abc;
    --background: #212024;
    --text: #eeeeee;
}

* {
    box-sizing: border-box;
}

html,
body {
    background: var(--background);
    padding: 5px;
    margin: 0;
}

body {
    text-align: center;
    color: var(--text);
    font-family: 'Termina', sans-serif;
}

button.start {
    border: 1px solid var(--accent);
    background: var(--background);
    color: var(--text);
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    padding: 5px 10px;
    font-weight: bold;
    margin: 10px auto 20px auto;
    font-family: 'Termina', monospace;
    transition: 0.3s border, 0.3s color, 0.3s background;
}

.start:hover {
    background: var(--accent);
    color: var(--background);
}

#intro {
    font-weight: lighter;
    padding: 5px;
    width: 100%;
    margin: 0 auto;
    text-align: left;
    max-width: 450px;
    padding-top: 15vh;
}

#intro p {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    line-height: 1.4;
    margin: 8px 0;
}

#intro h2 {
    font-weight: bold;
    font-size: 18px;
    margin: 20px 0 0 0;
}

#credits {
    text-align: center;
    font-family: 'Termina', monospace;
    z-index: 99999;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
}

#credits h1 {
    font-size: 20px;
    margin-bottom: 0;
    text-align: center;
}

#credits p {
    font-size: 12px;
    line-height: 1.75;
    margin: 5px;
}
/* AFrame overrides */
.a-loader-title {
    display: none !important;
}
