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

/* Full page container */
html, body {
    height: 100%;
    font-family: Arial, Helvetica, sans-serif;
}

.page {
    position: relative;
    height: 100vh;
    width: 100%;
    background-color: #92a985; /* fallback color */
    
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Centered content */

.overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem;
   /* background: #92a985; /* optional overlay */
}


/* Logo */
.logo {
    width: 30vw;
   /* max-width: 60%;*/
    height: auto;
    margin-bottom: 1rem;
}

/* Text */
.message {
    color: #685b40;
    font-size: 1.2rem;
	font-weight:300;
    letter-spacing: 0.05em;
}

/* Mobile styles */
@media (max-width: 768px) {
   

    .logo {
        width: 70vw;
		padding-bottom: 12vh;
    }
/*	.overlay {
		padding-bottom: 60vh;
	}*/

    .message {
        font-size: 1rem;
    }
}
