body {
    height: 100vh;
}

.container {
    font-family: inter;
    font-size: 12px;
    text-align: center;
    font-weight: 400;
}

hr {
    border: none;
    border-top: 1px solid #ccc;
}

nav {
    margin-left: 25px;
    display: flex;
    align-items: center;
}

#shopName{
    font-family: inter;
    font-size: 18px;
    font-weight: 500;
    margin-left: 15px;
}

#logo {
    height: 50px;
}

nav button {
    padding: 10px 20px;
    font-family: inter;
    font-size: 14px;
    font-weight: 300;
    background-color: white;
    color: black;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

nav button:hover {
    background-color: #f0f0f0;
}

#mainPage {
    margin-left: 20px;
    width: 150px;
}

#contactPage {
    width: 150px;
}

#tiktok {
    margin-left: auto;
    margin-right: 30px;
    cursor: pointer;
}

header {
    font-family: inter;
    font-size: 14px;
    margin: 40px 0px 0px 30px;
}

header h1 {
    font-weight: 600;
}

.products {
    width: 300px;
    height: 350px;
    margin: 30px;;
}

.products:hover {
    cursor: pointer;
}

.products p {
    font-family: inter;
    font-size: 14px;
    margin: 3px;
}

.container-prod {
    display: flex;
    flex-direction: row;
}

#prodName {
    font-weight: 300;
}

#price {
    font-weight: 400;
    font-size: 12px;
}

.products img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

footer {
    font-family: inter;
    font-size: 12px;
    text-align: left;
    font-weight: 200;
    margin-top: 18vh;
    margin-left: 30px;
    display: flex;
    flex-direction: row;
    gap: 25vw;
}

#waripol {
    cursor: pointer;
}

@media (max-width: 768px) {
#shopName{
    font-family: inter;
    font-size: 15px;
    font-weight: 500;
    margin-left: 15px;
}

#logo {
    height: 30px;
}

nav {
    margin-left: 10px;
    display: flex;
    align-items: center;
}

nav button {
    padding: 10px;
    font-family: inter;
    font-size: 12px;
    font-weight: 300;
    background-color: white;
    color: black;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.container-prod {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#tiktok {
    margin-left: auto;
    margin-right: 15px;
}

footer {
    font-family: inter;
    font-size: 10px;
    text-align: left;
    font-weight: 200;
    margin-top: 19vh;
    margin-left: 15px;
    display: flex;
    flex-direction: row;
    gap: 27vw;
}

    
}