h1 { font-size: 4.0rem }
h1, h2, h3, h4, h5, h6 {
    font-family: 'League Spartan'
}
@media (min-width: 550px) {
    h1 { font-size: 5.0rem; }
}
a { text-decoration: none }
span { font-size: 100% }

.nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3rem;
    font-family: 'Ra Mono';
    line-height: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav a { margin: 0 1.2rem }

.grid {
    width: 95%;
    max-width: 60rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
    gap: 1.2rem;
}
.grid div {
    width: 12rem;
    height: 12rem;
    padding-top: 1rem;
    padding-left: 1rem;
    font-family: 'Ra Mono';
}

h1.page-title {
    font-size: 7.2rem;
    display: flex;
    flex-direction: column;
}
h1.page-title span { font-size: calc(2.4rem + 0.632031vw) }
h1.page-title + a {
    position: absolute;
    bottom: 5rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    color: #F35588;
    background: #FFBBB4;
}
h1.page-title + a:hover {
    color: #FFBBB4;
    background: #F35588;
}

form {
    width: 95%;
    max-width: 60rem;
    margin-bottom: 2.5rem;
    border-radius: 1.2rem;
    display: grid;
    grid-template-columns: 1fr 3fr;
    align-items: center;
}
form > div {
    display: grid;
    grid-template-columns: 1fr 3fr 1fr 3fr;
}
.button,
input[type="submit"],
input[type="reset"] {
    display: inline-block;
    height: 38px;
    padding: 0 30px;
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    line-height: 38px;
    letter-spacing: .1rem;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    color: #1E272E;
    background-color: transparent;
    border: 1px solid #1E272E;
    border-radius: 4px;
    cursor: pointer;
}
.button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="submit"]:hover,
input[type="reset"]:hover {
    outline: 0;
    color: #1EAEDB;
    border-color: #1EAEDB;
}
.button { margin-bottom: 1rem }
input[type="email"],
input[type="text"],
input[type="password"],
input[type="date"],
select {
    height: 38px;
    padding: 6px 10px;
    border-radius: 4px;
    color: #1E272E;
    background-color: transparent;
    border: 1px solid #1E272E;
    box-shadow: none;
}
input[type="email"]:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="date"]:focus,
select:focus {
    border: 1px solid #1EAEDB;
    outline: 0;
}
input,
select { margin-bottom: 1.5rem }
label {
    display: block;
    margin-bottom: .5rem;
    font-weight: 600;
}
input[type="checkbox"],
input[type="radio"] { display: inline; }
.grid-out {
    grid-column: span 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

