* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    outline: none;
}

body {
    background: linear-gradient(-45deg, #0f0401, #772FD3, #010c10, #772FD3);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
	height: 100vh;
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}


main {
    margin: 0 auto 20px;
    width: 375px;
    background: #F4F4F4;
    border-radius: 20px;
    padding: 44px 24px 23px;
    
}

.logo-money {
    display: block;
    width: 300px;
    margin: 20px auto;
}

label {
    font-weight: 700;
    font-size: 14px;
    color: #777777;
}

select,
input {
    width: 100%;
    padding: 10px;
    margin-bottom: 24px;
    background: #ffffff;
    border: 1px solid #BBBBBB;
    border-radius: 4px;
    font-weight: 700;
    font-size: 16px;
    color: #555555;
    cursor: pointer;
}

button {
    width: 100%;
    height: 48px;
    border-radius: 5px;
    background: linear-gradient(-45deg, #0f0401, #772FD3, #010c10, #d8d5dc);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
    border: none;
    color: #ffffff;
    font-weight: 700;
    font-size: 18px;
    line-height: 18px;
    cursor: pointer;
}

button:hover {
    opacity: 0.8;
}

button:active{
    opacity: 0.5;
}

section{
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #772FD3;
    border-radius: 20px;
    margin-top: 36px;
    padding: 5px;
}

.currency-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.arrow-img{
    margin: 15px 0;
    
}

.currency{
    font-weight: 500;
    font-size: 14px;
    color: #777777;
}

.currency-value, .currency-value-to-convert{
    font-weight: 700; 
    font-size: 20px;
   color: #555555;
}