body {
    background-color: black;
    color: white;
}
h1{
    text-align: center;
    text-shadow: 0.51px rgb(80, 23, 23);
}
.container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    height: 200px;
}
.copy-text {
    position: absolute;
    bottom: 10px;
    font-size: 30px;
    color: black;
    font-weight: 400;
    text-align: center;
    align-items: center;
    text-transform: uppercase;
}
.input-field {
    width: 48%;
    font-size: 35px;
    font-weight: 400;
}
.output-field {
    width: 48%;
    color: black;
    font-size: 25px;
    font-weight: 400;
    background-color: #f0f0f0;
    padding: 10px;
    border: 1px solid #ccc;
    cursor: pointer;
    position: relative;
}
.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}
button {
    padding: 10px 20px;
    font-size: 35px;
    font-weight: 800;
    cursor: pointer;
}
button:hover {
    background-color: red;
    color: black;
}
.description {
    text-align: center;
    margin-top: 20px;
    font-size: 18px;
    color: #f0f0f0;
    background-color: #333;
    padding: 10px;
    border-radius: 5px;
}