*{
    margin: 0px;
    padding: 0px;
}

body {
    font-family: "Nunito", sans-serif;
}

.navbar {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    position: sticky;
    top: 0px;
    background-color: white;
    z-index: 1;
}

.navbar-title {
    color: #ff4668;
}

.searchbox {
    display: flex;
    border: 2px solid black;
    width: 30%;
    justify-content: space-around;
    border-radius: 30px;
    align-items: center;
}

.search {
    color: #ff4668;
}

.search:hover {
    transform: scale(1.3);
}

.user {
    display: flex;
    align-items: center;
}

.header {
    display: flex;
    justify-content: space-around;
    padding: 10px;
}

.icon {
    color: grey;
    text-align: center;
}

.icon i {
    font-size: 20px;
    padding: 5px;
}

.icon:hover {
    cursor: pointer;
    color: black;
}

.images {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.image-section {
    width: 250px;
    padding: 10px;
}

.image-section img {
    width: 250px;
    height: 300px;
    border-radius: 10px;
    transition: 3s;
}

.image-section img:hover {
    cursor: pointer;
    transform: scale(1.1);
}

.footer {
    text-align: center;
    padding: 10px;
    position: sticky;
    bottom: 0px;
    background-color: white;
}

@media screen and (max-width:768px) {
    .searchbox {
        width: 50%;
    }
    body {
        font-size: 10px;
    }
}

@media screen and (max-width:640px) {
    .searchbox {
        width: 60%;
    }
    .header {
        padding: 3px;
        gap: 8px;
    }
}
