body {
    font-family: Arial, sans-serif;
    background-color: #1e1e2f;
    color: #f8f8f2;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
  }

  .container {
    background-color: #282a36;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 400px;
    width: 100%;
  }

  h1 {
    color: #50fa7b;
    margin-bottom: 20px;
  }

  label {
    display: block;
    color: #ff79c6;
    margin-bottom: 10px;
  }

  input {
    width: calc(100% - 150px);
    padding: 10px;
    border-radius: 5px;
    border: none;
    margin-bottom: 20px;
    background-color: #44475a;
    color: #f8f8f2;
  }

  button {
    padding: 10px 20px;
    background-color: #6272a4;
    border: none;
    border-radius: 5px;
    color: #ffffff;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
  }

  button:hover {
    background-color: #50fa7b;
    color: #282a36;
  }

  .result {
    margin-top: 20px;
    font-size: 1.2em;
    font-weight: bold;
    color: #ffb86c;

    display: flex;
    flex-direction: column;
  }

  .input-space {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: calc(100% - 20px);
    height: 4rem;
    padding-bottom: 1rem;
  }

  select {
    height: 70%;
  }