.top {
    grid-area: top;
    background: #b02747;
    display: grid;
    grid-template-columns: 1fr minmax(100px, 1180px) 1fr;
    grid-template-areas: "a b c";
}

.link-container {
    grid-area: b;
    justify-self: end;
    display: flex;
}

.link {
    margin: 0 0 0 1rem;
    color: white;
}

.link > a {
    text-decoration: none;
    color: white;
}
