* {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #8A51FC;
}


.wrapper {
    width: 375px;
    margin: 0 auto;
    align-items: center;
    margin-top: 60px;
}

.imgLogo {
    width: 170px;
    margin: 0 auto;
    display: block;
}

section {
    background-color: #F4F4F4;
    border-radius: 20px;
    width: 375px;
    height: 712px;
    padding: 44px 24px 0 24px;
    margin-top: 20px;

}

label {
    color: #777;
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
    display:block;
    margin-bottom: 24px;

}

select {
    color: #555;
    font-family: Roboto;
    appearance: none;
    cursor: pointer;
}

select, input {
    width: 327px;
    height: 48px;
    margin-top: 6px;
    padding: 10px;
    font-size: 16px;
    font-weight: 700;
    line-height: 18px;
}

button {
    width: 327px;
    height: 48px;
    border-radius: 20px;
    background: #772FD3;
    color: #FFF;
    font-size: 18px;
    font-weight: 700;
    line-height: 18px;
    border: none;
    box-shadow: 0px 4px 3px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

button:hover {
    opacity: 0.8;
}

button:active {
    opacity: 0.6;
}

.resultConvertion {
    margin-top: 36px;
    border-radius: 20px;
    border: 1px solid #772FD3;
    width: 327px;
    height: 276px;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.textCoin {
    color: #777;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
}

.textValue {
    color: #555;
    font-size: 20px;
    font-weight: 700;
    line-height: 18px;
}

.downArrow {
   margin: 15px 15px;
}

#imgConvertFrom {
    margin-top: 10px;
}