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

body {
    background-image: url(./assets/background-dark.png);
}

.gif {
    display: block;
    margin: 5px auto 0;
}

main {
    width: 375px;
    background: #FFFFFF;
    border-radius: 20px;
    margin: 0 auto 10px;
    padding: 15px 24px 1px;
}

label {
    color: #777777;
    font-size: 16px;
}

select,
input {

    width: 100%;
    height: 35px;
    border-radius: 4px;
    border: 1px solid #BBBBBB;
    background: #FFFFFF;
    margin-bottom: 15px;
    padding-left: 18px;
    font-weight: 600;
    font-size: 16px;
    color: #555555;
}

button {
    width: 100%;
    height: 30px;
    background: #772FD3;
    border-radius: 5px;
    border: none;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

button:hover {
    opacity: .8;
}

button:active {
    opacity: .4;
}

section {
    border: 1px solid #772FD3;
    border-radius: 20px;
    margin: 16px auto;
    padding: 5px 10px;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.arrow {
    margin: 5px 0;
    height: 35px;
}

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

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

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

@media screen and (max-width:700px) {
    .gif {
        height: 230px;
    }

    main {
        padding: 20px 24px 5px;
    }

    label {
        font-size: 18px;
    }

    select, input {
        height: 40px;
        margin-bottom: 20px;
        font-size: 22px;
    }

    button {
        height: 45px;
        font-weight: 700;
    }

    section {
        padding: 10px 10px;
    }

    .currency {
        font-size: 20px;
    }

    .currency-value-converted,
    .currency-value-convert {
        font-size: 25px;
    }

    .currency-box {
        gap: 4px;
    }
.arrow {
        height: 45px;
        margin: 10px 0;
}

}
