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

body {
    font-family: "Inter", sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    
    /* === BACKGROUND IMAGE === */
    background-image: url("imgs/starry.gif");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

/* Main wrapper - flex container for sidebar + content */
.wrapper {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    width: 100%;
    align-items: flex-start;
}
