@media (max-width: 600px) {
    .currency input {
        width : 200px;
    }
}

:root {
    --primary-color:#a0e5a5;
    --text-color: #003c9c;
}

* {
    box-sizing: border-box;
}

body {
    background-color: var(--primary-color);
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    padding: 20px;
}

h1 {
    color: var(--text-color);
    font-family: Arial, Helvetica, sans-serif;
}

p {
    text-align: center;
}

.money-img {
    width: 150px;
}

.currency {
    padding: 40px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.currency select {
    padding: 10px 20px 10px 10px;
    appearance: none;
    border: 1px solid #2c2828;
    font-size: 16px;
    background: transparent;
}

.currency input {
    border: 0;
    background: transparent;
    font-size: 30px;
    text-align: center;
}

.swap-rate-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.btn {
    color: white;
    background-color: #0062ff;
    cursor: pointer;
    border-radius: 5px;
    font-size: 12px;
    padding: 5px 12px;

}

#rate {
    color: var(--text-color);
    font-size: 18px;
    font-weight: bold;
    padding: 0 10px;
}

select:focus,
input:focus,
button:focus {
    outline: 0;
}