: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;
  text-align: center;
  box-sizing: border-box
} 

body, html {
  max-width: 100%;
  background-color: #000000;
  overflow-x: auto;
}

@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
    }

    .profile-wrapper {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 5rem;
        color: white;
    }

    .profile-banner {
        width: 90%;
        max-width: 1200px;
        background-color: #1A1A1A;
        border-radius: 12px;
        padding: 2rem;
        display: flex;
        flex-flow: column nowrap;
        gap: 2rem;
        align-items: center;
    }

    .profile-top {
        display: flex;
        gap: 2rem;
    }

    .profile-picture {
        width: 150px;
        height: 150px;
        object-fit: cover;
        border-radius: 50%;
        border: 3px solid white;
    }

    .profile-main {
        align-self: center;
    }

    .profile-main h1 {
        margin: 0;
        font-size: 2rem;
    }

    .profile-main .join {
        margin-top: .5rem;
        color: #B3B3B3;
    }

    .profile-about h2 {
        margin: 0 0 .5rem 0;
        font-size: 1.3rem;
    }

    .profile-about p {
        color: #B3B3B3;
        margin: 0;
    }
}

@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;
    }

    .profile-wrapper {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 5rem;
        color: white;
    }

    .profile-banner {
        width: 90%;
        max-width: 1200px;
        background-color: #1A1A1A;
        border-radius: 12px;
        padding: 2rem;
        display: flex;
        flex-flow: row nowrap;
        justify-content: space-between;
        gap: 2rem;
        align-items: center;
    }

    .profile-top {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 2rem;
    }

    .profile-picture {
        width: 150px;
        height: 150px;
        object-fit: cover;
        border-radius: 50%;
        border: 3px solid white;
    }

    .profile-main h1 {
        margin: 0;
        font-size: 2rem;
    }

    .profile-main .join {
        margin-top: .5rem;
        color: #B3B3B3;
    }

    .profile-about h2 {
        margin: 0 0 .5rem 0;
        font-size: 1.3rem;
    }

    .profile-about p {
        color: #B3B3B3;
        margin: 0;
    }
}