/* Reset default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: white;
    background-color: black;
    padding: 20px;
}

header {
    text-align: center;
    padding: 20px 0;
}

.header-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 40px;
    cursor: pointer;
}

.title-section {
    text-align: center;
    padding: 40px 0;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

h2 {
    font-size: 2rem;
    margin: 30px 0 15px;
}

p {
    margin-bottom: 20px;
}

/* Create the 120vh space between title and about section */
.spacer {
    height: 120vh;
}

section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

footer {
    text-align: center;
    padding: 30px 0;
    margin-top: 50px;
    border-top: 1px solid #333;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .spacer {
        height: 80vh; /* Slightly smaller on mobile */
    }
}