@import url('https://fonts.googleapis.com/css2?family=Proxima+Nova:wght@400;500;600;700&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Proxima Nova', sans-serif;
    line-height: 1.6;
}

.splash-header {
    position: relative;
    width: 100%;
    height: 30vh;
    min-height: 250px;
    overflow: hidden;
}
.page-header {
    position: relative;
    width: 100%;
    height: 30vh;
    min-height: 250px;
    overflow: hidden;
}

#guilloche {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.header-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
}

h1 {
    font-size: 3.5rem;
    margin: 0;
    color: #2c3e50;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

main {
    padding: 2rem;
    padding-top: 0px;
    text-align: center;
}

p {
    font-size: 1rem;
    color: #34495e;
} 