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

body {
    background-image: url(./assets/background.png);
    background-size: 100%;
    background-color: #8A51FC;
}

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

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


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

select {
    appearance: none;
    background-color: #ffffff;
    width: 100%;
    height: 48px;
    font-size: 18px;
    text-align: center;
    border-radius: 10px;
    border: 3px solid #bbbbbb;
    cursor: pointer;
}

input {
    color: #000000;
    width: 100%;
    height: 48px;
    margin-bottom: 24px;
    font-size: 18px;
    text-align: center;
    border-radius: 10px;
    border: 3px solid #bbbbbb;
}

button {
    width: 100%;
    height: 48px;
    border-radius: 10px;
    border: 2px;
    background-color: #8A51FC;
    font-size: 18px;
    line-height: 18px;
    color: #fff;
    cursor: pointer;
}

button:hover {
    opacity: 0.8;
}

button:active {
    opacity: 0.6;
}

section {
    border: 1px solid #772fd3;
    border-radius: 20px;
    margin-top: 26px;
    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 {
    color: #777777;
    font-size: 14px;
}

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

.foot {
    width: auto;
    line-height: 10px;
    color: #777777;
    text-align: center;
    font-size: 12px;
}

.midias{    
    display: flex;
    align-items: center;   
    justify-content: center;
    gap: 15px; 
     
}

.insta {
   width: 45px;   
   
}

.linkedin {        
    width: 40px;    
}

.face {        
    width: 48px;    
}