* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', monospace;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #522698;
    padding: 10px;
}

.container {
    background: #3d1c72;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
    color: white;

}

h3 {
    margin-bottom: 20px;
    text-align: center;
}

form {
    display: flex;
    flex-direction: column;
}

.controls {
    display: flex;
    gap: 10px;
    justify-content: right;
}

input {
    margin-top: 5px;
    padding: 8px;
    border-radius: 4px;
    border: 1px solid #cccccc;
    width: 33%;
    background: transparent;
    color: white;
    outline: none;
}

button {
    margin-top: 20px;
    padding: 10px;
    background-color: #522698;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

button:first-of-type {
    background-color: transparent;
}

button:first-of-type:hover {
    background-color: grey;
}

#result {
    margin-top: 20px;
    font-size: 17px;
}
