:root {
    --font-family-default: 'Geologica', Arial, Verdana, Helvetica, sans-serif;
    --font-family-title: 'Unbounded', Arial, Verdana, Helvetica, sans-serif;
    --color-accent: #6601fe;
    --color-bg-default: #000000;
    --color-bg-inverted: #ff4343;
    --color-font-default: #ffffff;
    --color-font-inverted: #000000;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    outline: 0;
    border: none;
    list-style: none;
    line-height: 1;
    border-radius: 0;
    background-color: transparent;
    text-decoration: none;
    color: inherit;
    font-family: inherit;
}
html {
    font-size: 62.5%;
    width: 100%;
    height: 100%;
}
body {
    color: var(--color-font-default);
    font-family: var(--font-family-default);
    font-weight: 100;
    font-style: normal;
    font-variation-settings:
        "wdth" 100,
        "YTLC" 500;
    font-size: 1.8rem;
    background-color: var(--color-bg-default);
    word-wrap: break-word;
    width: 100%;
    height: 100%;
    transition-duration: .5s;
}
a,
button {
    cursor: pointer;
}
.nobr {
    white-space: nowrap;
    /* hyphens: none; */
}
.spacing {
    flex-shrink: 1;
    width: 100%;
    height: 100%;
}
.root {
    width: 100%;
    position: relative;
}



.layout {
    display: grid;
    margin: 0 auto;
    width: 100%;
    max-width: 200rem;
    gap: 8rem;
    padding: 0 12rem;
    grid-template-columns: 1fr 3fr;
    align-items: flex-start;
}


.main {
    width: 100%;
    position: relative;
}












@media all and (max-width: 1600px) {

.layout {
    gap: 6rem;
    padding: 0 6rem;
}

}




