*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: #dee2e6;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    padding: 15px;
}

.container{
    background-color: #212529;
    color: #e9ecef;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 4px 8px #adb5bd;
    text-align: center;
    width: 100%;
    max-width: 400px;
}

h1{
    margin-bottom: 20px;
    font-size: 22px;
}

.currency-container{
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.currency-container select{
    padding: 8px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 16px;
    background: #dee2e6;
    width: 45%;
}

.currency-container input{
    border: 0;
    background: transparent;
    font-size: 20px;
    color: white;
    text-align: right;
    width: 45%;
}

.exchange-rate{
    font-size: 14px;
    font-weight: 600;
    color: #adb9c3;
    margin-top: 10px;
}

select:focus,
input:focus{
    outline: none;
}

/* Mobile layout */
@media (max-width: 500px){

    .currency-container{
        flex-direction: column;
        align-items: stretch;
    }

    .currency-container select,
    .currency-container input{
        width: 100%;
    }

    .currency-container input{
        text-align: left;
        margin-top: 8px;
    }
}
