:root {
    --color-green: #149954;
    --color-red: #E4312b;
}

body {
    background-color: black;
    color: white;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    text-transform: uppercase;
    font-weight: bold;
}

img, video {
    max-width: 100%;
}

button {
    text-transform: uppercase;
    font-weight: bold;
    padding: 0.5rem;
    background-color: white;
    border: 0;
    border-radius: 0.2rem;
    font-size: 1.1rem;
}

button.green {
    background-color: var(--color-green);
    color: white;
}

button:hover {
    box-shadow: 0 4px 6px -1px  #fff, 0 2px 4px -2px #fff;
}

a {
    color: #149954;
}
a:active {
    color: #E4312b;
}
a:visited {
    color: #0e703d;
}

time {
    font-style: italic;
}

input {
    padding: 0.6rem;
    border: 0;
    border-radius: 0.2rem;
}

input:not([type="checkbox"]):not([type="radio"]), textarea {
    width: 100%;
}

input:disabled {
    background-color: white;
}

.btn-wrapper {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.padded {
    padding: 1rem;
}
.content {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 0.5rem;
}
.center {
    text-align: center;
}

.wave svg {
    width: 100vw;
}

.wave svg path {
    stroke: white;
    stroke-width: 4;

}

.monero {
    display: flex;
    justify-content: stretch;
}
.monero > input {
    width: 100%;
}

/* JOIN */
.join-step-checkbox-next {
    display: none;
    padding-top: 0.5em;
}

input.join-step-checkbox:checked ~ .join-step-checkbox-next {
    display: block;
}

.join-form label {
    font-weight: bold;
}

/* MEDIA DUMP */

.media-dump img {
    max-width: 49%;
    display: inline-block;
}