:root {
--ui-font: 'Krub', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

*{
  margin: 0;
  padding: 0;
  font-family: 'Krub', sans-serif;
  color: white;
  box-sizing: border-box
} 

body, html {
  max-width: 100%;
  background-color: #000000;
  overflow-x: auto;
}

@media screen and (min-width: 601px) {
    header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background-color: #1F1F1F;
        padding: 15px;
        height: 70px;
    }

    header .logo a {
        letter-spacing: 2px;
        font-size: 28px;
        color: white;
        text-decoration: none;
        cursor: pointer;
    } 

    header .nav-icons {
        display: flex;
        gap: 2rem;
        align-items:center;
    }

    .about-section {
        display: flex;
        justify-content: space-between;
        gap: 2rem;
        padding: 4rem;
    }

    .about-section .about-left-side {
        display: flex;
        flex-flow: column nowrap;
        text-align: left;
        max-width: 50vw;
    }

    .about-section h1 {
        margin-bottom: 1rem;
        font-weight: 400;
        letter-spacing: 4px;
    }

    .about-section p {
        letter-spacing: 1px;
        font-weight: 100;
        line-height: 1.5;
    }

    .about-section .about-right-side {
        min-width: 30vw;
    }

    .about-section .about-right-side img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        display: block;
        border-radius: 10px;
    }

    .stats-section {
        padding: 2rem;
        padding-bottom: 4rem;
        background-color: #111111;
        text-align: center;
    }

    .stats-section h1 {
        margin: 1rem;
        font-weight: 400;
        letter-spacing: 4px;;
    }

    .stats-section .stats {
        display: flex;
        flex-flow: row wrap;
        justify-content: center;
        column-gap: 10rem;
        row-gap: 2rem;
    }

    .stats-section p {
        font-weight: 200;
        letter-spacing: 4px;
    }

    .stats-section .stats .stat {
        min-width: 20vw;
    }

    .challenge {
        display: flex;
        flex-flow: column nowrap;
        gap: 2rem;
        text-align: center;
        padding: 4rem;
    }

    .challenge h1 {
        font-weight: 200;
        letter-spacing: 6px;
    }

    .challenge button {
        background: none;
        border: none;
        margin: 0;
        font: inherit;
        color: inherit;
        cursor: pointer;
        padding: 1rem;
        min-width: 20vw;
        background-color: #111111;
        font-weight: 300;
        letter-spacing: 2px;
        border-radius: 20px;
        font-size: 1.5rem;
        text-decoration: underline;
    }

    .challenge button:hover {
        background-color: #333333;
        transition: ease-in 0.2s;
    }
}

@media screen and (max-width: 600px) {

    header, .first-image, .new-products, .products-on-display, .featured, .goods, .services {
        display: block;
    }

    header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background-color: #1F1F1F;
        padding: 15px;
        height: 70px;
    }

    .nav-icons {
        display: flex;
        gap: 27px;
        align-items:center;
    }

    .bag img, .menu img {
        width: 24px;
        height: auto;
    }

    .logo p {
        letter-spacing: 2px;
        font-size: 28px;
        color: white
    }

    .about-section {
        display: flex;
        flex-flow: column nowrap;
        justify-content: space-between;
        gap: 2rem;
        padding: 4rem;
    }

    .about-section .about-left-side {
        display: flex;
        flex-flow: column nowrap;
        text-align: left;
    }

    .about-section h1 {
        margin-bottom: 1rem;
        font-weight: 400;
        letter-spacing: 4px;
    }

    .about-section p {
        letter-spacing: 1px;
        font-weight: 100;
        line-height: 1.5;
    }

    .about-section .about-right-side {
        min-width: 30vw;
    }

    .about-section .about-right-side img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        display: block;
        border-radius: 10px;
    }

    .stats-section {
        padding: 2rem;
        padding-bottom: 4rem;
        background-color: #111111;
        text-align: center;
    }

    .stats-section h1 {
        margin: 1rem;
        font-weight: 400;
        letter-spacing: 4px;;
    }

    .stats-section .stats {
        display: flex;
        flex-flow: row wrap;
        justify-content: center;
        column-gap: 10rem;
        row-gap: 2rem;
    }

    .stats-section p {
        font-weight: 200;
        letter-spacing: 4px;
    }

    .stats-section .stats .stat {
        min-width: 20vw;
    }

    .challenge {
        display: flex;
        flex-flow: column nowrap;
        gap: 2rem;
        text-align: center;
        padding: 4rem;
    }

    .challenge h1 {
        font-weight: 200;
        letter-spacing: 6px;
    }

    .challenge button {
        background: none;
        border: none;
        margin: 0;
        font: inherit;
        color: inherit;
        cursor: pointer;
        padding: 1rem;
        min-width: 20vw;
        background-color: #111111;
        font-weight: 300;
        letter-spacing: 2px;
        border-radius: 20px;
        font-size: 1.5rem;
        text-decoration: underline;
    }

    .challenge button:hover {
        background-color: #333333;
        transition: ease-in 0.2s;
    }
}