@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&display=swap');

/* ================================================================================ */

:root {
    --color--light-green: hsl(120, 10%, 90%);
    --color--light-green-darker: hsl(120, 10%, 85%);
    --color--dark-green: hsl(120, 40%, 30%);
}

/* ================================================================================ */

* {
    margin: 0;
    border: 0;
    padding: 0;
    -webkit-user-select: none;
    user-select: none;
}

html {
    font-size: 100%;
}

body {
    background: var(--color--light-green);
    color: var(--color--dark-green);
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1.85rem;
    text-align: center;
}

h1 {
    font-weight: 600;
    font-size: 3.5rem;
    line-height: 3.5rem;
}

h2 {
    font-weight: 600;
    font-size: 2rem;
    line-height: 2rem;
}

p {
    font-family: "Open Sans", sans-serif;
    /* font-family: "Ariel", sans-serif; */
}

/* ================================================================================ */

.content {
    margin: 0px 10%;
}

.text-selectable{
    -webkit-user-select: text;
    user-select: text;
}

/* ================================================================================ */

.logo {
    background-image: url("../images/Logo - Circle - Dark green.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    overflow: hidden;
    width: 100%;
    height: 5rem;
}

.contact-button {
    display: inline-block;
    padding: 10px;
    min-width: 300px;
    border-radius: 6px;
    background-color: var(--color--light-green);
    border: 2px solid var(--color--dark-green);
    color: var(--color--dark-green);
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 1.2rem;
    text-decoration: none;
}

.contact-button:hover {
    background-color: var(--color--light-green-darker);
}

.copyright {
    font-weight: 400;
    font-size: 0.6rem;
    line-height: 0.6rem;
}

/* ================================================================================ */

@media only screen and (min-width: 800px) {
    .content {
        margin: auto;
        width: 640px;
    }
}

/* ================================================================================ */

.spacer1px  { height:  1px; }
.spacer2px  { height:  2px; }
.spacer3px  { height:  3px; }
.spacer4px  { height:  4px; }
.spacer5px  { height:  5px; }
.spacer6px  { height:  6px; }
.spacer7px  { height:  7px; }
.spacer8px  { height:  8px; }
.spacer9px  { height:  9px; }
.spacer10px { height: 10px; }

@media only screen and (min-width:  100px) { .spacer { height:  1px; } }
@media only screen and (min-width:  200px) { .spacer { height:  2px; } }
@media only screen and (min-width:  300px) { .spacer { height:  3px; } }
@media only screen and (min-width:  400px) { .spacer { height:  4px; } }
@media only screen and (min-width:  500px) { .spacer { height:  5px; } }
@media only screen and (min-width:  600px) { .spacer { height:  6px; } }
@media only screen and (min-width:  700px) { .spacer { height:  7px; } }
@media only screen and (min-width:  800px) { .spacer { height:  8px; } }
@media only screen and (min-width:  900px) { .spacer { height:  9px; } }
@media only screen and (min-width: 1000px) { .spacer { height: 10px; } }
