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

body {
    font-family: 'Instrument Sans', sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, 
        rgba(231, 109, 100, 1) 0%, 
        rgba(229, 107, 134, 1) 20%, 
        rgba(164, 92, 161, 1) 50%, 
        rgba(120, 99, 178, 1) 80%, 
        rgba(99, 102, 189, 1) 100%);
    color: white;
    overflow: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
}

.content {
    margin-left: 5%;
    max-width: 800px;
}

h1 {
    font-family: 'Instrument Serif', serif;
    font-size: 4rem;
    font-weight: normal;
    margin-bottom: 1rem;
    line-height: 1.1;
}

p {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 1.8rem;
    max-width: 600px;
    line-height: 1.3;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }
    
    p {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.5rem;
    }
    
    p {
        font-size: 1.2rem;
    }
    
    .content {
        margin-left: 0;
    }
} 