@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');
html, body {
    padding: 0;
    margin: 0;
    font-family: 'Lato', sans-serif;
    background-color: #eeeeee;
}

.center {
    align-content: center;
    text-align: center;
}

.FWidth {
    width: 1000px;
    margin: 0 auto;
}

.card {
    background-color: #fff;
    padding: 10px 5px;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

nav {
    background-color: orangered;
    width: 100%;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

nav a {
    text-decoration: none;
}

.vertical-center {
    margin: 0;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.one {
    width: 45%;
    height: 200px;
    /* background: red; */
    float: left;
}

.two {
    margin-left: 50%;
    height: 200px;
    /* background: black; */
}

.container {
    /* width: 80%; */
    height: 200px;
    /* background: aqua; */
    margin: auto;
    /* padding: 10px; */
}

@media only screen and (max-width: 1000px) {
    .FWidth {
        width: auto;
        margin: 0 5px;
    }
}