body {
    background-image: url(https://static.vecteezy.com/system/resources/previews/002/145/787/original/technology-design-of-currency-exchange-on-blue-background-vector.jpg);
    height: auto;
    background-position: center top; 
}

.body_containter {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 80px;
}

h1 {
    color: white;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 72px;
    text-align: center;
    margin-bottom: 1rem;
}

input {
    height: 0.5rem;
    font-size: 22px;
    padding: 1rem;
    border: 5px white solid;
    border-radius: 40px;
    text-align: center;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

input:hover {
    border: 5px solid rgb(34, 207, 233);
    transition: all .2s ease-in;
}

button {
    width: 110px;
    height: 40px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 20px;
    border: 5px white solid;
    border-radius: 10px;
    text-align: center;
}

.button_container {
    display: flex;
    gap: 30px;
}

button:hover {
    border: 5px solid rgb(34, 207, 233);
    transition: all .2s ease-in;;
}

button:active {
    background-color: black;
    color: white;
}

#outputArea {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: white;
    font-size: 30px;
    height: 100px;
    margin-top: 20px;
}

label {
    color: white;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    margin-bottom: 0px;
    font-size: 24px;
}

.input_container {
    display: flex;
    flex-direction: column;
    align-items: center;
}