@import url('https://fonts.googleapis.com/css?family=Open+Sans');
@import url('header-style.css');
@import url('card-style.css');
@import url('content-style.css');
@import url('footer-style.css');
@import url('hero-style.css');
@import url('rwd.css');

:root {
    --page-width: 1920px;
    --content-width: calc(var(--page-width) - 480px);}

body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding-top: 50px;
    background-color: #eee;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}