@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    background-color: #fff;
}

header {
    border: 1px solid #fff;
    width: 100%;
    height: 70px;
    border-bottom: 2px solid #e5e5e5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    padding: 10px;
}

@import url('https://fonts.googleapis.com/css2?family=Jersey+25&display=swap');

h1 {
    font-weight: 500;
    font-family: "Jersey 25", sans-serif;
}

header button {
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    background-color: transparent;
    transition: background-color 0.2s ease;
}

header button img {
    width: 30px;
    height: 30px;
    margin: 0;
    padding: 0;
}

header button:hover {
    background-color: #fcd2d2;
}

header div img {
    width: 46px;
    height: 45px;
    margin-right: 8px;
}

header div {
    display: flex;
    align-items: center;
}

main {
    width: 100%;
    height: calc(100vh - 90px);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    box-sizing: border-box;
    flex-direction: column;
}

.header {
    width: 100%;
    height: 60px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    box-sizing: border-box;
}

main .header div {
    width: 100%;
    height: 100px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-right: 5px;
}

main .header div div {
    width: 200px;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 10px;
}

main .header div div select {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.644);
    text-decoration: none;
    font-size: 13px;
    width: 100%;
    height: 40px;
    border-radius: 16px;
    border: 1px solid #00000044;
    box-sizing: border-box;
    padding-left: 10px;
    margin-left: 10px;
}

select:hover, select:focus {
    background-color: #f1f5f9;
    outline: none;
}

main .header input {
    width: 100%;
    height: 40px;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    padding: 0 10px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    border-radius: 16px;
    background: #f1f5f9 url('search.png') no-repeat right 12px center;

}

main .header input:focus {
    outline: none;
    border-color: #0077ff;
}


.cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;

}

.card {
    width: 200px;
    height: 310px;
    border-radius: 10px;
    margin: 10px;
}

.card img {
    width: 100%;
    height: 240px;
    border-radius: 10px;
    object-fit: cover;
}

.card h2 {
    color: #000;
    font-size: 1.5rem;
    margin: 10px 0;
    font-family: "Jersey 25", sans-serif;
    font-weight: 100;
}

.card p {
    color: #007bff;
    font-size: 20px;
    font-family: "Jersey 25", sans-serif;
    font-weight: 100;
}


a {
    text-decoration: none;
}