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

body {
    background-image: url("./assets/bg.png");
    background-size: cover;
    background-position: center;
}

#logo {
    width: 140px;
    height: 140px;
    margin: 5px auto 0 auto;
    display: block;
    
}

main {
    width: 375px;
    height: 702px;
    border-radius: 20px;
    background: #F4F4F4;
    margin: 5px auto 0 auto;
    box-shadow: 2px 1px 8px #9b9393;
}

label {
    color: #777;
    font-size: 14px;
    font-weight: 700;
    line-height: 18px;
    margin-bottom: 6px;
}

option {
    color: #555;
    font-size: 16px;
    font-weight: 700;
    line-height: 18px;
}


.main-section {
    padding-top: 30px;
    padding-left: 24px;
    padding-right: 24px;
}

select, #value {
    width: 327px;
    height: 48px;
    border-radius: 4px;
    border: 1px solid #BBB;
    background: #FFF;
    margin-bottom: 24px;
    color: #555;
    font-size: 16px;
    font-weight: 700;
    line-height: 18px;
    appearance: none;
    padding-left: 14px;
    box-shadow: 2px 1px 8px #2823235d;
}

#convert-button {
    width: 327px;
    height: 48px;
    border-radius: 5px;
    background: #242128;
    color: #FFF;
    font-size: 18px;
    font-weight: 700;
    line-height: 18px;
    border: none;
    cursor: pointer;
    box-shadow: 2px 1px 8px #9b9393;
}

#convert-button:hover {
    opacity: 0.8;
}

#convert-button:active{
    opacity: 0.5;
}

.results {
    width: 327px;
    height: 295px;
    flex-shrink: 0;
    border-radius: 20px;
    border: 1px solid #242128;
    margin: 36px auto 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px;
}

.results p {
    text-align: center ;

}

#arrow {
    margin: 0px 0 0px 0;
    width: 85px;
    height: 75px;
}


.currency-value1 , .currency-value2 {
    font-weight: bolder;    
}

.results div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}