body {
    background-color: #323232;
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    color: white;
    font-size: 24px;
  }

  div {
    min-height: 100px;
    margin-bottom: 50px;
  }

  .navbar{
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    background-color: rgba(255,255,255, 0.1);
  }

  .logo {
    width: 48px;
    height: 48px;
    animation: rotate 20s linear infinite;
  }

  @keyframes rotate {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }

  .flag {
    width: 60px;
    position: absolute;
    left: 50px;
  }

  input {
    height: 60px;
    background-color: transparent;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius:10px;
    flex: 1;
    padding: 0 20px;
    color: white;
    font-size: 24px;
    text-align: center;
  }

  input[readonly] {
    background-color: rgba(255,255,255,0.05);
  }

  .input-container{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    padding-left: 32px;
    padding-right: 32px;
    position: relative;
  }

  .currency-select {
    height: 60px;
    background-color: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 10px;
    color: white;
    font-size: 16px;
    padding: 0 16px;
    cursor: pointer;
    min-width: 200px;
  }

  .currency-select option {
    background-color: #323232;
    color: white;
  }

  .currency {
    position: absolute;
    right: 42px;
    font-size: 14px;
    color: #4472c4;
    font-weight: 700;
    bottom: 24px;
  }

  .container-center{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
  }

  .exchange-rate {
    font-size: 18px;
    color: #4472c4;
    font-weight: 600;
    text-align: center;
  }

  .info-container {
    text-align: center;
    padding: 0 32px;
    min-height: 60px;
  }

  .info-container p {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin: 0;
  }
  
  button {
    background-color: #ffff32;
    padding: 0 32px;
    height: 50px;
    border: unset;
    font-size: 24px;
    border-radius: 10px;
    box-shadow: 2px 2px 2px rgba(0,0,0,0.8);
    cursor: pointer;
    transition: background-color 0.3s;
  }

  button:hover {
    background-color: #ffff55;
  }

  button:active {
    transform: translateY(2px);
    box-shadow: 1px 1px 1px rgba(0,0,0,0.8);
  }