/* General page styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Raleway', sans-serif;
    font-size: 12pt;
    color: #2d4760;
    background-color: #ffffff;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Center text in the viewport */
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    text-align: center;
}

.container h1 {
    margin: 0;
    width: 50%;
}

/* Responsive behavior */
@media screen and (orientation: portrait) {
    .container h1 {
        width: 75%;
    }
}

/* Footer styling */
footer {
    text-align: center;
    padding: 10px;
    font-size: 12pt;
}
