* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: black;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 45px;
    background: black;
    display: flex;
    gap: 20px;
    align-items: center;
    padding-left: 20px;
    z-index: 10;
}

.navbar a {
    color: white;
    text-decoration: none;
}

main {
    margin-top: 45px;
    height: calc(100vh - 45px);
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
}

.page {
    height: calc(100vh - 45px);
    scroll-snap-align: start;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: white;
}

#MUSIC::after, #CREATOR::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

#MUSIC .text, #DEV .text, #CREATOR .text,
#MUSIC .buttons a, #DEV .buttons a, #CREATOR .buttons a {
    color: white;
    border-color: white;
}

.content {
    position: relative;
    z-index: 2;
    width: min(1100px, 90%);
    margin: auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-video {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: 0;
}

.image img {
    width: 100%;
    max-height: 64vh;
    height: auto;
    display: block;
    object-fit: cover;
}

.text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

.buttons {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.buttons a {
    padding: 10px 18px;
    border: 1px solid black;
    text-decoration: none;
    color: black;
}

#DEV {
    --cursor-x: 50%;
    --cursor-y: 50%;
    background: radial-gradient(circle at var(--cursor-x) var(--cursor-y), rgba(150,0,0,1) 0%, rgba(0,0,0,1) 100%);
    overflow: hidden;
}

@media (max-width: 768px) {

    .content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .buttons {
        flex-direction: column;
    }

}