/* CSS Document */

body, html {
    font-family: 'Lato', sans-serif;
    overflow-x: hidden;
    overflow-y: auto;
}
h1 {
    font-family: 'Lustria', sans-serif;
}
.bg {
    background-image: url('/framework/portsmouth-alt.jpg');
    position: relative;
    width: 100%;
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #ff7e5f, #feb47b); /* Sunset gradient */
    background: linear-gradient(to bottom, #87CEFA, #1E90FF); /* Blue gradient*/
    opacity: 0.93;
}
.content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: black;
    height: 100vh;
    padding: 20px;
    z-index: 2;
}

.container {
	max-width:900px;
}

@media (min-width: 768px) {
    .content {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .content {
        height: 90vh;
    }
}