/* 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: #ebe8df; /* fallback color */
    background-image: url("xrisi-rogmi.png");
    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: #ebe8df; /* optional overlay */
}


/* Logo */
.logo {
    width: 18vw;
   /* 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) {
    .page {
        background-image: url("xrisi-rogmi-mob.png");
    }

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

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