
/* Style */

body {
    font-family: Effra-Bold, Helvetica, Arial, sans-serif;
    margin: 0px;
    padding: 0px;
    height: 100vh;
    /* border: 1px solid red; */
    width: 100%;
    position: relative;
    background-color: #003067;
    color: #fff;
}

.wrapper {
    display: grid;
    grid-template-rows: auto 1fr auto;
    height: 100%;
}

p {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1.125rem;
    line-height: 1.65;
    margin: 5px 0px;
}

a {
    text-decoration: none;
    color: white;
}

ul {
    padding-right: 15px;
}

.button {
    display: inline-block;
    font-weight: 500;
    color: white;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: #F76706;
    border: 1px solid rgb(226, 124, 0);
    padding: 0.25rem 0.5rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    -webkit-transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    cursor: pointer;
}
button.button:hover {
    background-color: rgb(179, 98, 0);
    border-color: rgb(179, 98, 0);
}

h1, h2, h3, h4, h5, h6 {
    margin: 5px 0px;
    color: white;
    line-height: 1;
}

header {
    background-color: #222;
    color: #eee;
    line-height: 50px;
}

section {
    margin: 2em 0px;
}

footer {
    color: #eee;
    padding: 10px;
    text-align: center;
    /* padding-bottom: 75px; */
}
