h1 {
    text-align: center;
    margin-bottom: 20px;
    background-color: #f2f2f2;
    padding: 20px;
    width: fit-content;
    margin: 0 auto 20px auto;
    border-radius: 5px;
}

p {
    margin-bottom: 10px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
    margin-top: 20px;
}

.gallery img {
    width: 100%;
    height: auto;
}

.card {
    display: flex;
    margin-bottom: 20px;
    padding: 20px;
    background-color: #f2f2f2;
    font-size:16px;
}

.card img {
    width: 500px;
    height: auto;
    margin-right: 20px;
    border-radius: 5px;

}

.card-content {
    flex: 1;
    line-height: 1.8;
    padding: 30px;
}
#my-day {
    background-color: #f2f2f2;
    padding: 20px;
    margin-top: 20px;
}

#my-day h2 {
    text-align: center;
    margin-bottom: 10px;
}

#my-day p {
    text-align: center;
    margin-bottom: 20px;
}

#my-day ul {
    list-style-type: none;
    margin-bottom: 20px;
}

#my-day ul li {
    margin-bottom: 10px;
}

#my-day ul li::before {
    content: "•";
    color: #ff6600;
    margin-right: 10px;
}

#my-day ul li:last-child {
    margin-bottom: 0;
}

#my-day p:last-child {
    margin-bottom: 0;
}
#my-day img {
    width: 300px;
    height: auto;
    margin-right: 20px;
    border-radius: 5px;
}
.img-container {
    position: relative;
}
.img-container img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}
/* Media Queries */
@media only screen and (max-width: 768px) {
    .card {
        flex-direction: column;
        padding: 0;
        font-size: 14px;
    }
    
    .card img {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }
    
}

@media only screen and (max-width: 480px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}
