:root {
    --main-red: #333333;
    --black: #222;
}
body {
    font-family: Helvetica, Arial, sans-serif !important;
    margin: 0;
    color: #333;
    line-height: 1.6;
    background: #fff;
}

body,
html {
  height: 100%;
}

.container{
  min-height: 100dvh;
  display: grid;
  grid-template-rows: auto 1fr auto;

}

.logo {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--main-red);
}
.site-footer {
    background: var(--main-red);
    color: #fff;
    text-align: center;
    padding: 2rem 1rem;
    margin-top: 2rem;
}
.site-footer a {
    color: #fff;
    text-decoration: underline;
}
main {
    min-height: 60vh;
}