/* General Styles */
body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f8f9fa;
}
h1 {
    color: #2c5364;
}
h2 {
    color: #b23a48;
}
.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 20px;
}
.box {
    background-color: #fdf7e3;
    padding: 20px;
    width: 30%;
    min-width: 250px;
    text-align: center;
    border: 1px solid #ddd;
}
.hello-box {
    cursor: pointer;
}
.color-input {
    margin: 10px;
}
.star {
    font-size: 200px;
}
.image-box img {
    width: 200px;
    height: 200px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
    }
    .box {
        width: 90%;
    }
}
