@import url("https://fonts.googleapis.com/css2?family=Sansita+Swashed&display=swap");

body {
  text-align: center;
  font-family: sans-serif;
  background-color: #ffffff;
  display: flex;
  height: 80vh;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-top: 30px;
}

h1 {
  color: #000000;
  font-size: 3rem;
}

.convert,
.exchange {
  font-family: "Sansita Swashed", cursive;
  font-size: 25px;
  color: #ffffff;
  padding-right: 20px;
}

input {
  font-size: 20px;
  margin: 5px auto;
  outline: 1;
}

#original-currency-amount {
  padding-left: 50px;
}
button {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  font-family: "Sansita Swashed", cursive;
}

select {
  font-size: 20px;
  padding-left: 10px;
  outline: 1;
}

#exchange {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin: 0 0px;
  outline: 1;
  color: #00539cff;
  border: 4px solid #c00000;
}

#exchange:active,
button:active {
  transform: scale(0.9);
}

#output-text {
  display: none;
  padding: 20px;
  font-size: 30px;
  color: #ffffff;
}

span {
  color: #c00000;
  font-size: 25px;
}

#exchange-rate {
  cursor: default;
}

footer {
  position: absolute;
  right: 50px;
  bottom: 50px;
}

a {
  color: #ffffff;
  bottom: 0;
  font-size: 30px;
  text-decoration: none;
}