* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
}

body {
    font-family: "Poppins";

    background-color: #050609;
    color: #f5d0c5;
}

h1 {
    font-size: 5rem;
    margin-bottom: 1rem;
}

button {
    cursor: pointer;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-size: 2.5rem;
    gap: 4rem;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    text-align: center;
}

.form button {
    align-self: center;
    padding: 1rem 4rem;
    border-radius: 2rem;
    transition: background-color 0.2s ease-in;
    font-weight: bold;
}

.form input,
select,
button {
    background-color: #f5d0c5;
    border: none;
    font-size: 2.1rem;
    outline: none;
    border-radius: 1.2rem;
    padding: 1rem;
    color: #3c0000;
}

.form select {
    cursor: pointer;
}

.form button:hover {
    background-color: #d69f7e;
}

.currency-code-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

.currency-from,
.currency-to,
.amount-input-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.currency-option {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f5d0c5;
    border-radius: 10px;
    padding: 0 1rem;
}

/* Animation */

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.animated__2s {
    animation: fadeIn 2s ease;
}

.animated__1s {
    animation: fadeIn 1s ease;
}
