#container {
    text-align: center;
    height: auto;
    margin-top: 20vh;
    display: block;
}

#req-body {
    display: inline-block;
    vertical-align: top;
    width: 300px;
    height: 70vh;
    min-height: 600px;
    margin: 30px;
    margin-top: 0px;
    text-align: center;
    box-sizing: border-box;
}

#req-title {
    font-family: MarkinLT;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow:
    -0.5px -0.5px 0 #000000,
    0.5px -0.5px 0 #000000,
    -0.5px 0.5px 0 #000000,
    1px 1px 0 #000000;
}

label {
    font-family: MarkinLT;
    font-weight: 900;
    font-size: 20px;
    color: #ffffff;
    text-shadow:
    -0.5px -0.5px 0 #000000,
    0.5px -0.5px 0 #000000,
    -0.5px 0.5px 0 #000000,
    1px 1px 0 #000000;
}

#category, #userEmail, #description, #userDiscord {
    transition: all 0.15s ease-in;
    background-color: #ff99ff;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("/assets/images/hearts.png");
    border-style: solid;
    border-color: rgb(0, 0, 0);
    border-width: 3px;
    border-radius: 12px;
    font-family: MarkinLT;
    font-weight: 900;
    font-size: 20px;
    color: rgb(0, 0, 0);
    outline: none;
    height: 52px;
    width: 250px;
    margin: 20px;
    margin-top: 5px;
    margin-bottom: 50px;
  }

  #description {
    height: 100px;
    font-size: 20px;
    padding-top: 10px;
    padding-left: 10px;
  }

  #userEmail {
    padding-left: 3px;
    height: 52px;
    margin-bottom: 20px;
  }

  #userDiscord {
    padding-left: 3px;
  }

  #userEmail::placeholder, #description::placeholder, #userDiscord::placeholder {
    color: black;
  }

  #submit {
    transition: all 0.15s ease-in-out;
    position: relative;
    display: inline-block;
    width: 70px;
    height: 40px;
    background-color: #ff99ff;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("/assets/images/hearts.png");
    border-radius: 10px;
    border-style: solid;
    border-color: rgb(0, 0, 0);
    font-family: MarkinLT;
    border-width: 3px;
    font-weight: 900;
  }
  
  #submit:hover {
    transform: rotate(180deg);
  }