@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

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

body {
    background-color: #8a51fc;
}

.logo {
    width: 250px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin: 20px auto;
}

main {
    width: 375px;
    background-color: #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-color: #772fd3;
    color: #ffffff;
    display: block;
    width: 100%;
    height: 48px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 36px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 18px;
    border: none;
    cursor: pointer;
}

button:hover {
    opacity: 0.8;
}

button:active {
    opacity: 0.6;
}

section {
    border: 1px solid #772fd3;
    border-radius: 20px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.arrow-img {
    margin: 15px 0;
}

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

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

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

