* {
    margin: 0;
    padding: 0;
}

.container {
    width: 100%;
    height: 100vh;
    background-color: lavender;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.container h1 {
    color: rgb(6, 6, 6);
    font-weight: 700;
    font-size: 25px;
    text-align: center;
}

.converter-row {
    display: flex;
    width: 50%;
    justify-content: space-between;
    align-items: center;
    background: rgb(53, 53, 107);
    border-radius: 10px;
    padding: 50px 20px;
}

.col {
    flex-basis: 32%;
    text-align: center;
}

.col label {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #ffffff;
}

.col input {
    width: 150px;
    height: 40px;
    background: rgb(255, 255, 255);
    border-radius: 5px;
    text-align: center;
}