.dl-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Set container height to 100% viewport height */
}

.dl-button {
    padding: 10px;
    background-color: #53e7c7;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#user-input {
    width: 50%; /* Adjust width as needed */
    padding: 10px;
    font-size: 20px; /* Adjust font size as needed */
    text-align: center; /* Center text within the input field */
}

#user-input:focus {
    outline: none;
}

#download-button {
    padding: 10px;
    background-color: #53e7c7;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}