html {
    font-family: "Inter";
    font-weight: 300;
    background-color: #221920;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%233a2436' fill-opacity='1.0' fill-rule='evenodd'%3E%3Ccircle cx='10' cy='10' r='1'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: repeat;
    color: #ffdcf7;
}

body {
    margin: 0px;
}

header {
    margin-top: 8px;
}

footer {
    display: flex;
    flex-direction: column; /* column(...) */
    width: 100%; /* width(Fill) */
    align-items: center; /* align_x(Center) */
    margin-bottom: 32px;
}

a {
    color: #f0aade;
}

button:not(.download-priority) {
    font-weight: 350;
}

.shadow {
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.15);
}

.sicon {
    width: 16px;
    height: 16px;
    filter: invert();
}

header {
    margin-bottom: 20px;
}

hr {
    color: #ffffff11;
}

h1 {
    font-weight: 600;
}

h2 {
    font-weight: 500;
    margin-bottom: 12px;
}

sub {
    margin-left: 6px;
}

.header-row {
    display: flex;
    gap: 20px;
    padding: 10px;
    padding-bottom: 20px;
    align-items: center;

    margin: 0 auto;
    width: fit-content;
}

.header-row > a {
    text-decoration: none;
}

.header-item {
    display: flex;
    align-items: center;
    gap: 8px;

    transition: color 0.3s ease;
}

.header-item:hover {
    color: #ffffff;
}

.page {
    max-width: 1000px;
    margin: 0 auto;
}

.header-logo {
    font-size: 20px;
    display: flex;
    flex-direction: column;
    font-weight: 600;
    margin-right: 16px;
}

.header-links {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.hero-row {
    display: flex;
    gap: 24px;
}

@media (max-width: 768px) {
    .hero-row {
        flex-direction: column;
    }
}

.hero-column {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hero-column:not(.hero-img-left) {
    margin-left: 16px;
}

.hero-column.hero-img-left {
    margin-left: 8px;
}

h1 {
    margin-bottom: 10px;
}

h1:not(.header-row) {
    margin-top: 10px;
}

.hero-row img:not(.hero-img-start):not(.hero-img-left):not(.hero-img-main) {
    max-width: 500px;
    margin-right: 102px;
}

.hero-row img.hero-img-start {
    max-width: 600px;
}

.hero-row img.hero-img-left {
    max-width: 480px;
}

.hero-row img.hero-img-main {
    display: block;

    width: 100%;
    max-width: 800px;
    margin: 0px;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.hero-row-vignette {
    justify-content: center;
}
.hero-img-wrapper {
    position: relative;
    display: inline-block; /* shrink to image size */
}

.hero-img-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;

    border-radius: 8px; /* match image */
    background: radial-gradient(
        ellipse at center,
        rgba(0, 0, 0, 0) 50%,
        rgba(0, 0, 0, 0.4) 100%
    );

    opacity: 1;
    transition: opacity 0.4s ease;
}

.hero-img-wrapper:hover::after {
    opacity: 0;
}

.hero-button {
    border: 0px solid black;
    border-radius: 8px;

    width: 190px;
    height: 50px;
    padding-bottom: 4px;

    transition: 0.3s;
    font-size: 20px;
    color: white;
    cursor: pointer;

    display: flex;
    align-items: center;
}
.hero-button:not(:hover) {
    background-color: #c975c244;
}
.hero-button:hover {
    background-color: #c975c299;
}

.header-button {
    text-decoration: none;
    border: 0px solid black;
    border-radius: 8px;

    transition: 0.3s;
    font-size: 16px;
    color: white;
    font-weight: 400;
    cursor: pointer;

    display: flex;
    align-items: center;

    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 16px;
    padding-right: 14px;
}
.header-button:not(:hover):not(.download-priority) {
    background-color: #c975c222;
}
.header-button:hover {
    background-color: #c975c277;
}

.header-button b {
    margin-right: 5px;
}
