
* {
    font-family: 'Roboto', sans-serif;
    box-sizing: border-box;
}

body {
    background-color: #F6F8FC;
}

.content {
    padding: 1rem;
    background-color: #FFF;
    height: 100%;
    width: 100vw;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.27);
}

@media screen and (min-width: 992px){
    .content {
        max-width: 992px;
        height: auto;
        margin: 1rem auto;
        border-radius: 1rem;
    }
}

