

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.menu-container {
    color: #fff;
    background-color: grey;
    padding: 20px 10px;
    display: flex;
    justify-content: center;
}

.menu {
    width: 900px;
    display: flex;
    justify-content: space-between;
}
.links {
    display: flex;
    justify-content: space-around;
}
.login {
    margin-left: 20px;
}


.header-container {
    width: 100%
}


.footer {
    display: flex;
    justify-content: space-between;
    background-color: grey;
}

.footer-item {
    border: 1px solid #fff;

    height: 200px;
    flex: 1;
}


