/* GOBAL STYLES */


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    font-size: 62.5%;
    --primary-color: #FF5F0F;
    --color-white: #fff;
    --color-blue: #1f2f46;
    scroll-behavior: smooth;
}


ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: var(--color-blue);
    font-family: 'Oswald', sans-serif;
}

.flex {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

body {
    font-family: 'Raleway', sans-serif;
    background:#181717;
}

h1,
h2,
h3,
h4 {
    font-family: 'Oswald', sans-serif;
}

h1 {
    color: var(--primary-color);
    font-weight: 100;
    font-size: 5rem;
}
img {
    width:100%;
    height: auto;
}
.container {
    width: 90%;
    max-width: 114rem;
    margin: 0 auto;
}
.big {
    display: none;
}
.small {
    display: block;
}
@media(min-width: 767px) {
    .big {
        display: block;
    }
    .small {
        display: none;
    }
}