@import url('https://fonts.googleapis.com/css2?family=Mukta:wght@500&family=Outfit:wght@300&family=Permanent+Marker&family=Roboto:wght@300&display=swap');

* {
    margin: 0px;
    padding: 0px;
    font-family: 'Mukta', sans-serif;
    font-family: 'Outfit', sans-serif;
    font-family: 'Permanent Marker', cursive;
    font-family: 'Roboto', sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

#container {
    width: 90%;
    /* Changed from fixed width to a percentage */
    max-width: 700px;
    background-color: #5CDB95;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 5px;
    padding: 20px;
}

#h1 {
    width: 100%;
    text-align: center;
    margin: 20px 0;
    color: #EDF5E1;
    font-weight: bold;
}

#exchange-rate-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

#form {
    display: flex;
    flex-wrap: wrap;
    /* Added flex-wrap to allow items to wrap to the next line */
    justify-content: center;
    align-items: center;
    width: 100%;
}

#input-value {
    flex: 1;
    min-width: 100px;
    margin-right: 10px;
    outline: none;
    border-radius: 5px;
    text-align: center;
    background-color: #EDF5E1;
    border: none;
    font-weight: bold;
    padding: 3px;
}

#second-rate , #first-rate {
    flex: 1;
    max-width: 150px;
    margin: 5px;
}

#form>p {
    font-size: 20px;
    flex: 0 0 5%;
    margin: 0 5px;
    text-align: center;
}

#conclusion-p {
    text-align: center;
    width: 100%;
    max-width: 150px;
    background-color: #EDF5E1;
    border-radius: 5px;
    padding: 2px;
    font-size: 13px;
    margin-bottom: 5px;
    margin-top: 5px;
    font-weight: bold;
    color: #5c5b5b;
}

#calculation-button {
    width: 100%;
    max-width: 150px;
    height: 40px;
    cursor: pointer;
    border-radius: 5px;
    border: none;
    background-color: #EDF5E1;
    font-weight: bold;
    font-size: 12px;
    color: rgb(60, 60, 60);
    margin-top: 5px ;
}
