body {
    background-color: #fff3e0;
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 20px;
}

header {
    text-align: center;
    margin-bottom: 20px;
}

h1 {
    color: #ff5722;
    font-size: 2.5em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    margin-bottom: 0.5em;
}

h2 {
    color: #ff7043;
}

ul {
    list-style: none;
    padding: 0;
}

li {
    margin-bottom: 10px;
}

.container {
    background-color: #ffe0b2;
    border-radius: 15px;
    padding: 20px;
    max-width: 800px;
    margin: auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.image-upload {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.image-upload label {
    margin-right: 10px;
    font-weight: bold;
}

.image-upload input[type="file"] {
    display: block;
    margin-right: 10px;
}

.image-upload img {
    height: 100px;
    border-radius: 10px;
    object-fit: cover;
}

#gif_display_area {
    text-align: center;
    margin-top: 20px;
}

#gif_display_area img {
    max-width: 100%;
    border-radius: 10px;
}

select, .button {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ffccbc;
    background-color: #ff7043;
    color: white;
    margin-top: 10px;
    cursor: pointer;
}

.button:hover {
    background-color: #ff5722;
}

.frame-example {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 800px;
    margin: auto;
}

.example {
    text-align: center;
    flex-basis: 45%;
    margin-bottom: 20px;
}

.example h3 {
    margin: 10px 0;
}

.example img {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin: 0 auto;
    display: block;
}

.image-container {
    overflow: hidden;
    margin-top: -50px;
    text-align: center;
}

.image-container img {
    width: 200px;
    margin-top: 50px;
}

.button {
    padding: 10px 20px;
    border-radius: 20px;
    border: none;
    background-color: #ff7043;
    color: white;
    font-size: 1em;
    text-transform: uppercase;
    box-shadow: 0 4px #ff5722;
    transition: background-color 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.button:hover {
    background-color: #ff5722;
    box-shadow: 0 2px #d0451b;
}
