* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #3c0203;
    font-family: Roboto;
}

main {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.gif img {
    width: 250px;
}

.conversor {
    width: 375px;
    background-color: #1d1d1dab;
    border-radius: 20px;
    padding: 44px 24px 23px;
}

.conversor select {
    height: 48px;
    width: 100%;
    outline: none;
    appearance: none;
    font-size: 16px;
    font-weight: 700;
    line-height: 18px;
    color: #ffffff;
    padding-left: 20px;
    margin-bottom: 30px;
    border-radius: 4px;
    border: 1px solid #BBB;
    background: #3c0203;
    box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.15);
}

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

.conversor b {
    color: #777;
    font-size: 14px;
    font-weight: 700;
    line-height: 18px;
}

input {
    height: 48px;
    width: 100%;
    outline: none;
    appearance: none;
    font-size: 16px;
    font-weight: 700;
    line-height: 18px;
    color: #ffffff;
    padding-left: 10px;
    box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    border: 1px solid #BBB;
    background: #3c0203;
    margin-bottom: 23px;
}

button {
    width: 327px;
    height: 48px;
    border-radius: 5px;
    background: #d81b1f;
    color: #3c0203;
    font-size: 18px;
    font-weight: 700;
    line-height: 18px;
    border-style: none;
    margin-bottom: 36px;
    box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.15);
}

button:hover {
    opacity: .8;
}

button:active {
    opacity: .6;
}

.conversão-container {
    border-radius: 20px;
    border: 1px solid #ffffff;
    width: 327px;
    height: 276px;
    padding-top: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}


.coin-to-converted {
    color: #ffffff8c;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
}

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

.p-to-convert {
    color: #ffffff8c;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
}

.to-convert {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    line-height: 18px;
}