body {
 background-color: black;
 color: white;
 font-family: sans-serif;
 display: flex;
 justify-content: center;
 align-items: center;
 height: 100vh;
 margin: 0;
 text-align: center;
 position: relative;
}

.container {
 display: flex;
 flex-direction: column;
 align-items: center;
 padding: 20px;
 max-width: 90%;
}

h1 {
 font-size: 2em;
 margin-bottom: 20px;
}

.upload-area {
 margin-bottom: 20px;
 width: 100%;
}

.upload-box {
 width: 150px;
 height: 150px;
 border: 2px dashed white;
 display: flex;
 justify-content: center;
 align-items: center;
 cursor: pointer;
 margin: 0 auto;
}

.upload-box span {
 color: white;
}

p {
 margin: 10px 0;
}

textarea {
 width: 100%;
 height: 100px;
 padding: 10px;
 background-color: transparent;
 border: 1px solid white;
 color: white;
 margin-bottom: 20px;
 resize: none;
}

.submit-button {
 background-color: white;
 color: black;
 border: none;
 padding: 10px 20px;
 font-size: 1em;
 cursor: pointer;
 margin-bottom: 20px;
}

.redirect-button {
 position: fixed;
 bottom: 20px;
 left: 20px;
 background-color: red;
 color: white;
 border: none;
 padding: 10px 15px;
 cursor: pointer;
 border-radius: 5px;
 font-weight: bold;
}