@import url('https://fonts.googleapis.com/css?family=Poppins');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.container {
    width: 100%;
    min-height: 100vh;
}

header {
    width: 100%;
    height: 60px;
    background-color: rgb(253, 238, 220);
    display: flex;
    justify-content: space-around; /* Horizontal alignment */
    align-items: center; /* Vertical alignment */
}

.logo a {
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
}

nav ul li {
    display: inline;
    margin-left: 30px;
}
nav ul li a {
    text-decoration: none;
    font-size: 12px;
    color: black;
}

main .hero {
    width: 100%;
    height: 300px;
    background-color: rgb(252, 203, 170);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

main .hero h1 {
    font-size: 46px;
    margin-bottom: 20px;
}

main .gallery {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

main .gallery div {
    width: 50%;
    height: 250px;
}

main .gallery div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}