* {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
}
body {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.container-welcome {
    text-align: center;
    max-width: 1280px;
    margin: auto;
}
.topbar {
    grid-area: topbar;
    background-color: #f7f7f7;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid beige;
}
.topbar ul {
    display: flex;
    align-items: center;
}
.topbar li {
    padding: 10px;
}
.topbar a {
    color: #45719c;
    font-size: 14px;
}
.topbar-menu li:hover a {
    /* background-color: #cddff3; */
    border-radius: 5px;
    border-bottom: 2px solid #213f61;
    padding-top: 10px;
    padding-bottom: 2px;
}
.img-center img {
    border-radius: 5px;
    width: 100%;
}
.brand-area {
    display: grid;
    /* max-width: 1280px;
    margin: auto; */
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.brand-area div {
    background: #f8f8f8;
    display: grid;
    height: 75px;
    border: 1px solid #e7e7e7;
    border-radius: 10px;
    place-items: center;
    margin: 5px;
}
.buttons {
    background-color: #3988ff;
    color: white;
    padding: 12px;
    border: 1px solid #c0c0c0;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
}


@media only screen and (max-width: 550px) {

    .topbar {
        display: block;
    }
    .topbar ul {
        display: flex;
        justify-content: center;
    }

}