html,body{
    height: 100%;
    margin:0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
a{
    text-decoration: none;
}
.container{
    height: 100%;
    max-height: 100vh;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

h1{
    font-size: 4em;
    line-height: 2em;
    margin:0;
}

.brand--red{
    font-weight: bold;
    color: #8C0B16;
}

.brand--blue{
    font-weight: bold;
    color: #2B4C8C
}

.box{
    background-color: #fff;
    margin: 0 auto;
    width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px;
-webkit-box-shadow: 0px 0px 45px -32px rgba(66, 68, 90, 1);
    -moz-box-shadow: 0px 0px 45px -32px rgba(66, 68, 90, 1);
    box-shadow: 0px 0px 45px -32px rgba(66, 68, 90, 1);
}

.content{
    margin: 1em auto;
    line-height: 1.5em;
    font-size: 1em;
    font-variant:small-caps;
}

.content p{
    width: fit-content;
    margin:1em auto;
}

.content-grid{
    display: grid;
    column-gap: 10px;
    row-gap: 10px;
    grid-template-rows: 1fr;
    grid-template-columns: 20px auto;
    justify-items: left;
    grid-auto-flow: row;
}