body {
    margin:0;
    font-family: sans-serif;
    background: #111;
    color: white;
}

/* Hero */
.hero {
    position: sticky;
    top: 0;
    height: 100vh;
    background: #111;
    transition: height 0.6s ease, background 0.6s ease;
    z-index: 1000;
}
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;

    transition: all 0.6s ease;
    will-change: transform, left;
}
.logo {
    width: 320px;
    transition: all 0.6s ease;
}
.hero h1 {
    font-family: 'Anton';
    font-size: 70px;
    margin-top: 20px;
    letter-spacing: 1px;
    transition: all 0.6s ease;
}
/* Hero -> header */
.hero.scrolled {
    height: 70px;
    background: #2e2e2e;
}
.hero.scrolled .hero-content {
    left: 20px;
    transform: translate(0, -50%);
    gap: 15px;
}
.hero.scrolled .logo {
    width: 45px;
}
.hero.scrolled h1 {
    font-size: 28px;
}

/* hero spacer */
.hero-spacer {
    height: 0;
    transition: height 0.6s ease;
    will-change: height;
}
.hero.scrolled + .hero-spacer {
    height: calc(100vh - 70px);
}


/* About */
.about{
    background:black;
    padding:300px 20px;
    text-align:center;
}

.about h2{
    font-family:'Anton';
    font-size:40px;
}

/* Game */
.game-image {
    background-image: url("images/obsidian_logo_red.png");
    background-size: cover;
    background-position: center;
    height: 80vh;
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
}
.game-image h2 {
    font-family: 'Anton';
    font-size: 80px;
    text-align: center;
}
.game-description {
    background-color: #111;
    padding: 80px 20px;
    margin-top: -120px;
    text-align: center;
}
.game-description h2 {
    font-family: 'Anton';
    font-size: 40px;
}
