@import url('https://fonts.googleapis.com/css2?family=Arimo:wght@400;700&display=swap');

* {
    font-family: 'Arimo', sans-serif;
}

body {
    background-color: #1a1a1a;
    color: #ffffff;
    margin: 0;
    padding: 0;
}

nav {
    background-color: #000000;
    padding: 1rem 0;
}

nav a {
    color: #ffffff;
    text-decoration: none;
}

nav a:hover {
    color: #cccccc;
}

/* Full-width banner styles */
.banner-wrap {
    width: 100%;
    height: 400px;              /* Desktop height */
    overflow: hidden;
}

.site-banner {
    width: 100%;
    height: 100%;
    object-fit: cover;          /* This makes it crop instead of shrink */
    object-position: center;    /* Keeps crop centered */
}

@media (max-width: 600px) {

    .banner-wrap {
        height: 30vh;      /* Only mobile gets fixed height */
    }

    .site-banner {
        height: 100%;
        width: 100%;
        object-fit: cover; /* Only mobile crops */
        object-position: center;
    }

}


.emaillink {
    color: #acd8ff;
}

h2, h1 {
    font-weight: 600;
}