/*font-family: 'Roboto', sans-serif; */

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

}

body{
    background-color: #8A51FC;

}

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

}

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

}

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

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


}

.input-currency{
    width: 100%;
    background: #FFFFFF;
    border-radius: 4px;
    border: 1px solid #BBBBBB;
    height: 48px;
    margin-bottom: 24px;
    padding-left: 18px;
    cursor: pointer;



}

button{
    background: #772FD3;
    width: 100%;
    height: 48px;
    border-radius: 5px;
    color: #FFFFFF;
    margin-bottom: 24px;
    border: none;
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;


}

button:hover{
    opacity: 0.8;
}

button:active{
    opacity: 0.6;
}

section{
    
    border-radius: 20px;
    border-width: 1px;
    border: 1px solid #772FD3;
    padding: 12px;
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
   

}

.vector{
    margin: 15px 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;

}

