body {
    font-family: "Geom", sans-serif;
    padding: 2rem;
    height: calc(100vh - 4rem);
    margin: 0;
}

body main {
    height: 100%;
    width: 100%;
}

.row-type-splashpage {
    display: flex;
    height: 100%;
    width: 100%;
    text-align: center;
    background-color: #f9f9f9;
    border-radius: 1rem;
}

.row-type-splashpage .container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

@media screen and (min-width: 992px) {
    h1 {
        font-size: 52px;
    }
}

a {
    text-decoration: none;
    color: #000;
    transition: .3s;
}

a:hover {
    color: #d93923;
}