html,
body {
    padding: 0;
    margin: 0;
}

body {
    background-color: black;
    color: rgba(50, 205, 50, 1.0);
    font-size: 1.5rem;
    transition: color 1s cubic-bezier(.34, .48, .08, .99);
}

body::-webkit-scrollbar {
    display: none;
}

body {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.Launch {
    background-color: black;
    min-height: 100vh;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    top: 0;
    left: 0;
    opacity: 1;
    transition: opacity 500ms ease;

    @media (max-width: 880px) {
        flex-direction: column;
    }
}

.Launch div {
    height: -webkit-fill-available;
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.box {
    font-family: "Open Sans", sans-serif;
    font-weight: 300;
    background-color: transparent;
    font-size: 25px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: limegreen;
    cursor: pointer;
    border: 2px solid;
    padding: 0.25em 0.5em;
    transition: all 200ms cubic-bezier(0.33, -0.15, 0.15, 2.21)
}

button,
.button {
    box-shadow: 1px 1px 0px 0px limegreen, 2px 2px 0px 0px limegreen, 3px 3px 0px 0px limegreen, 4px 4px 0px 0px limegreen, 5px 5px 0px 0px limegreen;
    position: relative;
    top: -5px;
    left: -5px;

}

button.active {
    color: limegreen;
    box-shadow: 0px 0px 0px 0px;
    top: 5px;
    left: 5px;
}

button.active.locked {
    color: red;
    box-shadow: 0px 0px 0px 0px;
    top: 5px;
    left: 5px;
}

button.loading {
    color: orange;
    box-shadow: 1px 1px 0px 0px orange, 2px 2px 0px 0px orange, 3px 3px 0px 0px orange, 4px 4px 0px 0px orange, 5px 5px 0px 0px orange;
}

form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

form * {
    margin-top: 1rem;
}

.Launch form * {
    width: 100%;
}

.input {
    border-color: limegreen;
    border-width: 6px;
    border-style: groove;
    border-bottom-style: double;
    border-bottom-width: 6px;

    text-transform: unset;
    color: lime;
}

.input::placeholder {
    letter-spacing: 2px;
    color: rgb(0, 109, 0);
}

.log {
    border-style: double;
    border-width: 9px;
    border-color: limegreen;
    font-size: 0.5em;
    max-width: 50%;

    @media (max-width: 880px) {
        max-width: unset;
    }
}

.tonedText {
    color: rgba(50, 205, 50, 0.3);
    background-color: rgb(19, 19, 34);
}

.text {
    padding: 2rem;
}

.text * {
    margin: 0;
}

.text p {
    padding-top: 1rem;
    padding-bottom: 1rem;
}