html {
    background-color: #00251a;
    margin: 0;
    padding: 0;
}

* {
    color: white;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0;
    margin: 0;
}
#particle-canvas {
    width: 95vw;
    top: 0;
    left: 0;
    padding: 0;
    margin: 0;
    position: absolute;
    height: 100%;
    z-index: -1;
    color: red; /*TODO*/
}

.row {
    display: flex;
    flex-direction: row;
    justify-content: stretch;
    align-items: stretch;
    flex-wrap: wrap;
    margin: 1em;
    width: 95vw;
}

p {
    overflow-wrap: break-word;
}

textarea {
    background-color: transparent;
    width: 100%;
    border: 0;
    margin: 0;
    padding: 0;
    resize: none;
    border: none;
    outline: none;
    font-family: Arial, Helvetica, sans-serif;
    word-break: break-all;
    word-wrap: anywhere;
}

.twitter-timeline {
    background-color: transparent;
}

.full {
    width: 100%;
}

.round-container {
    background-color: black;
    text-align: left;
    padding: 1em;
    margin: 0.5em 1em;
    border-radius: 1em;
    text-wrap: normal;
    flex: 1 1 0;
    min-width: 15em;
    box-shadow: rgba(0, 0, 0, 0.35) 0 5px 15px;
}

.logo {
    height: 7em;
    width: 7em;
    padding: 1em;
}

.xSPOLogo {
    height: 3em;
}

.wallet-table {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.wallet-table-entry {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background-color: darkslategray;
    border-radius: 1em;
    margin: 1em;
    padding: 1em;
    text-decoration: none;
    flex: 1 1 0;
    text-align: center;
}

.wallet-logo {
    height: 5em;
    min-width: 10em;
    object-fit: contain;
}

button {
    color: white;
    background-color: green;
    border: none;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    padding: 1em;
    width: 100%;
}

button:hover {
    background-color: #192919;
}


summary {
    background-color: darkslategray;
    color: white;
    padding: 1rem;
    margin-bottom: 1rem;
    outline: none;
    border-radius: 0.25rem;
    text-align: left;
    cursor: pointer;
    position: relative;
}

details > summary::after {
    position: absolute;
    content: "+";
    right: 20px;
}

details[open] > summary::after {
    position: absolute;
    content: "-";
    right: 20px;
}

details > summary::-webkit-details-marker {
    display: none;
}

details[open] summary ~ * {
    animation: sweep .1s ease-in-out;
}

@keyframes sweep {
    0% {
        opacity: 0;
        margin-top: -10px
    }
    100% {
        opacity: 1;
        margin-top: 0
    }
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.contact-entry {
    display: flex;
    flex-direction: column;
    text-align: center;
    flex: 1 1 0;
    padding: 1em;
    text-decoration: none;
}

.contact-entry > img {
    height: 3em;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.cg-container {
    color: white;
}

.faq__content {
    margin: 2em 1em;
}


.text-and-image {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-self: center;
}

.yoroi-instructions {
    min-height: 12em;
    max-height: 25em;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    align-self: center;
}
nav {
    width: 100%;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #333;
}

nav li {
    float: left;
}

nav li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

/* Change the link color to #111 (black) on hover */
li a:hover {
    background-color: #111;
}

.back-button {
    text-align: center;
    text-decoration: none;
}