.head-container {
    display: grid;
    grid-template-columns: 120px 500px 120px;
    background-color: gray;
}

.logo a img {
    width: 120px;
    height: 120px;
}

.title {
    color: yellow;
}

.links-container {
    width: 120px;
    height: 120px;
    background-color: gray;
    display: grid;
    grid-template-rows: 35px 35px 35px;
    text-align: center;
}

.link {
    color: yellow;
    margin-top: 15px;
    text-decoration-line: overline;
}

.footer-container {
    color: yellow;
    background-color: gray;
    align-content: center;
}

.footer-container p{
    margin-left: 675px;
}