*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Oswald', sans-serif;
}

.my-container{
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.text-source-sans{
    font-family: 'Source Sans 3', sans-serif !important;
}

@media (min-width: 800px) {
    .mobile-version{
        display: none;
    }
}

@media (max-width: 800px) {
    .desktop-version{
        display: none;
    }
}