body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Inter'; /* Name you'll use in CSS */
    font-weight: 300;
    src: url('fonts/Inter_18pt-Light.ttf'); /* Path to font file */
}

@font-face {
    font-family: 'Inter-Bold'; /* Name you'll use in CSS */
    font-weight: 700;
    src: url('fonts/Inter_18pt-Bold.ttf'); /* Path to font file */
}

.main-container {
    display: flex;
    justify-content: center;
    margin-top: 75px;
}

.sidebar {
    display: flex;
    flex-direction: column;
}

.sidebar input {
    margin-bottom: 20px;
    max-width: 200px;
    min-height: 30px;
}

.products-container {
    display: grid;
    grid-template-columns: repeat(4, 300px); /*change to em or something*/
    grid-gap: 25px;
}

.product {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    border-radius: 8px;
    background-color: #f7f5f0;
    width: 300px;
    height: 330px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.product img {
    width: 300px;
    height: 250px;
    border-radius: 8px;
    /*box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);*/
}

.product p {
    margin-left: 15px;
}

.product p:first-of-type {
    font-family: 'Inter-Bold';
}

.product p:last-of-type {
    font-family: 'Inter';
}

.filter {
    display: flex;
    flex-direction: column;
    margin-right: 40px;
    width: 200px;
    max-height: 1000px;
    background-color: #f7f5f0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.filter a {
    text-decoration: none;
    font-family: "Inter";
    margin: 20px;
    padding: 10px;
}

.top-bar {
    background-color: black;
    width: 100%;
    height: 100px;
}

.login {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    height: 800px;
}

.login-item {
    margin: 10px;
}

.hidden {
    display: none;
}