body {
    background-color: #121212;
    color: #ffffff;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

h1 {
    text-align: center;
    margin-top: 50px;
}

.container {
    width: 40%;
    background-color: #333;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.inputField {
    width: calc(100% - 50px);
    margin: 10px auto;
    height: 40px;
    padding: 5px 10px;
    border: none;
    border-radius: 5px;
    background-color: #555;
    color: #ffffff;
}

.generateButton {
    width: calc(100% - 50px);
    margin: 20px auto;
    height: 50px;
    border: none;
    border-radius: 5px;
    background-color: #007bff;
    color: #ffffff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.generateButton:hover {
    background-color: #0056b3;
}
