html {
    min-height: 100%;
}
body {
    background-image: url('/images/bg.jpg');
    background-size: cover;
    background-position: center center;
    margin:4rem;
}

body {
    font-size:1.2rem;
    color:#486F62;
    font-family: 'HelveticaNowText', sans-serif;
    line-height: 1.5;
}
body a {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 0.25em;
    color:inherit;
}

#info {
    background-color: white;
    max-width: 75rem;
    box-sizing: border-box;
    padding:1rem;
    margin-left: auto;
    margin-right: auto;

    display:flex;
    gap:2.5rem;
    justify-content: center;
    align-items: center;

    font-weight: 400;
}

#logo {
    height:6.75rem;
}

.mobileonly {
    display:none;
}

@media (min-width:1400px) {
    html {
        font-size:19px;
    }
}