@font-face {
    font-family: "GT Walsheim";
    src: url("GT-Walsheim-Regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "GT Walsheim";
    src: url("GT-Walsheim-Bold.woff") format("woff");
    font-weight: bold;
    font-style: normal;
}

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

body {
    padding: 30px;
    max-width: 500px;
    min-width: 400px;
    margin: auto;
    text-align: center;
}

button {
    position: absolute;
    bottom: 20px;
    left: 40px;
    background: #1d3061;
    color: white;
    font-size: 1.25rem;
    font-weight: bold;
    line-height: 23px;
    padding: 18px 40px 19px;
    border-radius: 30px;
    text-decoration: none;
    border: none;
}

button:hover {
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25), inset 0 80px 0 rgba(255, 255, 255, 0.1);
}

button:focus {
    background: #FCF6F3;
    outline: 3px solid #D7932D;
    color: #264E7D;
}

button:active:focus {
    box-shadow: inset 0 80px 0 rgba(0, 0, 0, 0.1);
    background: #1d3061;
    color: white;
    outline: none;
}

h1 {
    color: #1d3061;
    font-style: normal;
    font-weight: bold;
    font-size: 3rem;
    line-height: 110%;
}

h2 {
    font-size: 1.25rem;
    margin-top: 0;
    font-weight: normal;
}

h3 {
    font-style: normal;
    font-weight: bold;
    font-size: 2rem;
    line-height: 110%;
    color: #1D3061;
    padding: 2rem 0;
    margin: 0;
}

section {
    position: relative;
    height: 14rem;
    padding: 2rem;
    border: 1px solid #1D3061;
    border-radius: 10px;
    margin: 10px;
    /*background-color: #FEF2E9;*/
}


li {
    text-align: left;
}

.sections {
    display: grid;
    grid-template-columns: 1fr;
}

@media (min-width: 1100px) {
    body {
        max-width: 1000px;
    }
    .sections {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}
