
* {
  font-family: "Vend Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
}

h1, h2, h3, h4 {
  font-family: "Bowlby One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

a {
    text-decoration: none;
    color: #215389;
}
a:hover {
    text-decoration: underline;
}



body {
    margin: 0;
    font-size: 1.3em;
    background: #fefced;
}


.container {
    display: grid;
    margin: 0 auto;
    max-width:1200px;
    text-align:center;
    justify-items: center;
    padding-left: .5em;
    padding-right: .5em;
}
.container .banner {
    max-width: 100%;
    margin-top: 2em;
    border-radius: 6px;
    display: block;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, .15);
}
.container p {
    max-width: 1000px;
}

a.button {
    background: #f26c25;
    border-radius: 16px;
    padding: .6em 2em;
    color: white;
    text-decoration: none;
    margin-top: 1em;
    transition: all .1s ease-in-out;
    font-weight: 700;
}
a.button:hover {
    transform: scale(1.2);
    background-color: color-mix(in srgb, #f26c25, white 15%);
    text-decoration: none;
}

footer {
    background-color: #b9e9ff;
    padding: 2em 1em;
    text-align: center;
    margin-top: 4em;
    font-size: .8em;
    padding-top: 3em;
}
.socialLinks a {
    margin: 0 .4em;
    font-weight: 700;
}
.copyright {
    margin-top: 3em;
    font-size: .9em;
    opacity: .7;
}