@import url('https://fonts.googleapis.com/css2?family=Salsa&family=Ubuntu&display=swap');
*{
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
}
body{
    background-color: rgba(0, 20, 39);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}
.heading{
    font-family: 'Salsa', cursive;
    color: black;
    font-size: 1.68rem;
    padding: 5px;
    text-align: center;
    border-bottom: 1px solid black;
    border-top: 1px solid black;
    border-radius: 8px;
}
.container{
    background-color: #fffbdb;
    height: fit-content;
    width: 330px;
    padding: 20px;
    border-radius: 20px;
}
.form-container{
    display: flex;
    flex-direction: column;
}
.amt{
    margin-top: 20px;
    font-family: 'Salsa', cursive;
    width: 100%;
    height: 32px;
    font-size: 1rem;
    padding: 2px;
    padding-left: 8px;
    outline: none;
}
.selector{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 17px;
}
.country{
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid black;
    padding: 2px;
    border-radius: 3px;
}
.country select{
    height: 28px;
    border-color: 1px solid black;
    border: none;
    background-color: #fffbdb;
    margin-left: 5px;
}
img{
    height: 43px;
}
form i{
    margin-top: 13px;
    font-size: 1.6rem;
}
.output-screen{
    display: flex;
    justify-content: center;
    margin-top: 10px;
    font-size: 1.15rem;
    font-weight: 700;
    border: 2px solid rgba(0, 20, 39);
    border-radius: 5px;
}
button{
    margin-top: 11px;
    height: 35px;
    cursor: pointer;
    font-size: 1rem;
    font-family: 'Salsa', cursive;
    font-weight: 500;
    background-color: rgba(255, 193, 69);
    border: none;
    border-radius: 7px;
}
button:hover{
    opacity: 0.5;
    color: black;
}