body {
    font-family: 'Source Sans Pro', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background: linear-gradient(180deg, #1a2c56, #155774);
    background-size: cover;
    background-blend-mode: overlay;
    color: white;
}
.container {
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
h1 {
    font-size: 3em;
    margin: 0;
    font-weight: 900; /* Use the 'Black' (900) weight of Source Sans Pro */
}
p {
    font-size: 1.2em;
    margin-top: 10px;
}
.footer {
    position: absolute;
    bottom: 10px;
    font-family: 'Cabin', sans-serif; /* Apply Cabin font to the footer */
    font-size: 0.9em;
}