body {
  background-color: #1e1e20;
  /* font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI Variable", "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; */
  font-family: 'Inter', sans-serif;
  text-align: center;
  overflow: none
}

h1, h2, h3, h4, h5, h6, p, a, li, details {
  color: #aaaaac;
}

a {
    text-decoration: underline;
}

details:hover {
    color: white;
}

details:active {
    color: rgb(75, 75, 75);
}

button, .btn {
    background-color: #1e1e20;
    color: white;
    padding: 6px;
    margin: 2px;
    border: solid 1px;
    border-radius: 5px;
    border-color: #505052;
    text-decoration: none;
}

button:hover, .btn:hover {
    border-color: #6e6e70;
    /* cursor: pointer; */
}

button:active, .btn:active {
    border-color: #6e6e70;
    background-color: #505052;
    /* cursor: pointer; */
}

.container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.subcontainer {
    width: 100;
    max-width: 1150px;
    margin: auto;
    padding: 1rem;
}

.center {
    width: 100%;
    max-width: 1150px;
    margin: auto;
    padding-right: 2rem;
    padding-left: 2rem;
}