/* Font Declarations */
@font-face {
    font-family: 'Nexa';
    src: url('nexa/Nexa-ExtraLight.ttf') format('truetype');
    font-weight: 300;
}

@font-face {
    font-family: 'Nexa';
    src: url('nexa/Nexa-Heavy.ttf') format('truetype');
    font-weight: 700;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    margin: 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    overflow: hidden;
}

.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    padding: 20px;
    box-sizing: border-box;
}

h1 {
    font-size: 4vw;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.subtitle {
    font-family: 'Nexa', sans-serif;
    font-size: 2vw;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 8vw;
    }
    
    .subtitle {
        font-size: 5vw;
    }
}
