*{
    margin: 0px;
    padding: 0px;
}

body{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #9D75CB;

.container{
    background-color: #AAFFE5;
    padding: 2rem;
    border-radius: 2rem;
    
    min-height: 25vh;
    min-width: 25vw;
}



h2{
    display: flex;
    justify-content: center;
    padding: 20px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

form{
    margin: /*5rem 2rem 5rem 6rem*/ 20%;
}

form input, select, button{
    width: 100%;
    border: none;
    outline: none;
    border-radius: 5px;
    background-color: rgba(64, 148, 148, 0);
}

form input{
    border: 1px solid rgb(141, 123, 195);
    font-size: 1rem;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    height: 2rem;
    text-align: center;
    background-color: rgba(64, 148, 148, 0.25);
}

.amount{
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;

}

.dropdown{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
}

.select-currency img{
    max-width: 1.75rem; 
}

.select-currency{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(103, 144, 144, 0.25);
    border-radius: 0.5rem;
    border: 1px solid rgb(141, 123, 195);
}

.from{
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.dropdown i{
    font-size: 0.75rem;
    margin-top: 1rem;
    /*padding: 20px;*/
}

.to{
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.result{
    margin-top: 1.5rem;
}


form button{
    margin-top: 1rem;
    height: 3rem;
    font-size: 1rem;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    border: 1px solid rgb(141, 123, 195);
    cursor: pointer;
    background-color: rgba(103, 144, 144, 0.25);
}

@media (max-width: 450px){
    
    .dropdown {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    .from,
     .to{
        width: 100%;

    }
  
    
  

}