:root {
--bg: #e0f0f8;
--text: #1e537b;
--muted: #1e537b;
--line: #73b4d5;
}


* { box-sizing: border-box; }


body {
margin: 0;
font-family: "Google Sans Flex", Arial, Helvetica, sans-serif;
color: var(--text);
background: url('/img/wave.jpg');
background-repeat: repeat-x;
background-position: bottom center;
background-size: contain;
background-color: var(--bg);
background-attachment: fixed;  /* Add this line */
}

a {
    color: #1e537b;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.page {
max-width: 1200px;
margin: 0 auto;
padding: 0px 30px 40px;
}


/* HEADER */
.logo {
text-align: center;
margin-bottom: 40px;
}


.logo img {
max-width: 35em;
width: 100%;
}


/* INTRO TEXT */
.intro {
max-width: 46em;
margin: 0 auto 45px;
text-align: center;
font-size: 18px;
line-height: 2em;
color: var(--muted);
}


.intro p { margin: 14px 0; }


/* MAIN GRID */
.main {
display: blocl;
align-items: center;
max-width: 55em;
margin-left: auto;
margin-right: auto;
line-height: 1.4em;
font-weight: 600;
font-size: 1.1em;
text-align: center;

    @media (max-width: 900px) {
        grid-template-columns: 1fr;
    }

}


/* LEFT DETAILS */
.stats {
font-size: 16px;

@media (max-width: 900px) {
    order: 1;
}

}


.stats ul {
list-style: none;
padding: 0;
margin: 0 0 30px 0;
}


.stats li {
margin-bottom: 10px;
}


.stats strong { font-weight: 700; }


.contact {
font-size: 15px;
line-height: 1.7;
color: var(--muted);
}


/* IMAGE */
.photo img {
width: 100%;
display: block;


@media (max-width: 900px) {
    order: 2;

    .email {
    display: block;
}

}



}


/* FOOTER */
.divider {
margin: 45px 0 45px;
max-width: 15em;
border-top: 4px solid var(--line);
margin-left: auto;
margin-right: auto;
}


footer {
font-size: 14px;
color: var(--muted);
}


footer p { margin: 6px 0; 
margin-left: auto;
margin-right: auto;  
max-width: 62em;
}


/* RESPONSIVE */
@media (max-width: 900px) {
}