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

#logo {
    width: 200px;
    height: 200px;
    display: block;
    margin: 20px auto;
}

body {
    background-color: #8A51FC;

}

main {
    width: 375px;
    border-radius: 20px;
    background-color: #f4f4f4;
    margin: 0 auto 40px;
    padding: 44px 24px 23px;
}

label {
    color: #777777;
    font-weight: 400;
    font-size: 16px;
}

select,
input {
    border-radius: 4px;
    border: 1px solid #bbbbbb;
    background-color: #ffffff;
    height: 48px;
    width: 100%;
    outline: none;
    margin-bottom: 24px;
    appearance: none;
    padding-left: 18px;
    font-weight: 700;
    color: #555555;
}

button {
    border: none;
    height: 48px;
    width: 100%;
    color: #ffffff;
    border-radius: 5px;
    background: #772fd3;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
}

button:hover {
    opacity: 0.8;
}

button:active {
    opacity: 0.6;
}

.logo, .logo-brasil {
    width: 50px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    border-radius: 50%;
}
section {
    border: 1px solid #772fd3;
    border-radius: 20px;
    margin-top: 36px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#currency-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}
.currency, .currency-name {
    color: #777777;
    font-weight: 400;
    font-size: 14px;
}
.currency-value, .currency-value-to-convert {
    color: #555555;
    font-weight: 700;
    font-size: 20px;
}