* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
    outline: none;
}

body {
    background-color: #ff009d;
}

.logo {
    width: 300px;
    display: block;
    margin: 20px auto;

}

.won-img {
    background-image: url('./assets/won.png');
    background-size: contain;
    background-repeat: no-repeat;
    padding-left: 1020px;
}

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


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

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

button {
    background: #ff009d;
    border-radius: 5px;
    width: 100%;
    height: 48px;
    border: none;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
}

button:hover {
    background: #e6008c;
    cursor: pointer;
    opacity: 0.9;
}

button:active {
    background: #cc007a;
    overflow: 0.6;
}

section {
    border: 1px solid #ff009d;
    border-radius: 20px;
    margin-top: 36px;
    padding: 2px;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.arrow {
    width: 70px;
    height: 50px;
    margin: 16px 0;
}

.currency-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.currency {
    color: #777777;
    font-size: 14px;
}

.currency-value, .currency-value-to-convert {
    color: #555555;
    font-weight: 700;
    font-size: 20px;
}