body {
  font-family: Arial, sans-serif;
  text-align: center;
  background: #ffffff;
  background-image: linear-gradient(136deg, rgba(255, 255, 255, 1) 0%, rgba(98, 0, 255, 1) 100%);
  height: auto;
  background-attachment: fixed;
  background-size: cover;
}

/*
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: white;
  border: none;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  padding: 20px;
  margin: 50px auto;
  max-width: 750px;
}
*/

.container {
  color: black;
  font-size: medium;
  font-weight: lighter;
  margin: auto;
  border: solid black 1px;
  padding: 10px;
  text-align: center;
  align-self: center;
  max-width: 750px;
  margin-bottom: 20px;
}

#shorten-form {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: none;
  text-align: center;
}

#shorten-btn {
  width: 200px;
  height: 40px;
  font-size: 18px;
  background-color: #6200ff;
  color: white;
  border: solid black 1px;
  cursor: pointer;
  margin-top: 15px;
}

#shorten-btn:hover {
  background-color: #641ada;
  transform: scale(1.05);
}

#original-link {
  height: 30px;
  font-size: 18px;
  width: 700px;
  padding: 10px;
  border: 1px solid black;
  background-color: #ffffff00;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 7000px;
  min-width: 300px;
  text-align: center;
  color: black;
}

#shortened-link {
  height: 30px;
  font-size: 18px;
  padding: 10px;
  border: 1px solid black;
  background-color: #ffffff00;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 750px;
  min-width: 300px;
  text-align: center;
  color: black;
}

#clipboard-btn {
  width: 200px;
  height: 40px;
  font-size: 18px;
  background-color: #6200ff;
  color: white;
  border: solid black 1px;
  cursor: pointer;
  margin-top: 15px;
}


#clipboard-btn:hover {
  background-color: #641ada;
  transform: scale(1.05);
}

#main {
  top: 50% auto;
  bottom: 50% auto;
}

#copysuccess {
  color: black;
  font-size: small;
  font-weight: bolder;
  margin: auto;
  border: none;
  padding: 10px;
  text-align: center;
  align-self: center;
}