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

html, body {
    height: 100%;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.main-container {
    height: 100vh;
    width: 100vw;
    background-image: url('images/cover2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.header {
    position: absolute;
    top: 0;
    right: 0;
    padding: 2rem;
    z-index: 10;
}

.demo-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: rgba(255, 255, 255, 0.9);
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.demo-link:hover {
    background-color: rgba(255, 255, 255, 1);
    transform: translateY(-1px);
}

.demo-link:focus {
    outline: 2px solid #007acc;
    outline-offset: 2px;
}

.content {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.artist-name {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.tagline {
    font-size: 1.25rem;
    font-weight: 300;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .header {
        padding: 1rem;
    }

    .demo-link {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .content {
        bottom: 1rem;
        left: 1rem;
    }

    .artist-name {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .tagline {
        font-size: 1rem;
    }

    .main-container {
        background-attachment: scroll;
    }
}

@media (max-width: 480px) {
    .artist-name {
        font-size: 1.5rem;
    }

    .tagline {
        font-size: 0.9rem;
    }
}