body {
    font-family: 'Arial', sans-serif;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    color: #fff;
}

.container {
    text-align: center;
    background: #121212;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    width: 90%;
    max-width: 500px;
}

h1 {
    margin-bottom: 20px;
    font-size: 2em;
    display: flex;
    align-items: center;
    justify-content: center;
}

h1 i {
    margin-right: 10px;
    color: #ff0000;
}

.input-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

input[type="text"] {
    width: 100%;
    padding: 15px;
    border: 1px solid #444;
    border-radius: 5px;
    font-size: 1em;
    outline: none;
    background: #222;
    color: #fff;
}

button {
    padding: 15px 30px;
    background-color: #ff4b2b;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #ff1e1e;
}

#thumbnailContainer {
    margin-top: 20px;
}

#thumbnailContainer img {
    max-width: 100%;
    height: auto;
    border: 2px solid #444;
    border-radius: 5px;
    margin-bottom: 10px;
}

#thumbnailContainer p {
    margin: 0;
}
