body {
  background-color: rgba(0, 0, 0, 0.925);
  overflow: hidden;
  height: 100%;
  font-family: Arial, Helvetica, sans-serif;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background-color: #14141488;
  padding-left: 50px;
  padding: 50px;
  padding-top: 0px;
  padding-bottom: 0px;
  margin-left: 30px;
  margin-right: 30px;
  margin-top: 0px;
  margin-bottom: 0px;
  border-radius: 10px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  color: white;
  font-size: 20px;
}
.title {
  font-size: 35px;
  margin-bottom: 20px;
  font-weight: bold;
  text-decoration: underline;
}
input {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid rgb(131, 131, 131);
  color: white;
  width: 100%;
}
input:focus {
  outline: none;
  border: none;
}
button {
  background-color: rgba(37, 37, 255, 0.719);
  border: none;
  color: rgb(201, 201, 201);
  width: 30%;
  border-radius: 30px;
  padding: 10px;
  margin-top: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.result {
  display: flex;
  margin-top: 20px;
  align-items: center;
  width: 300px;
  height: 150px;
  border-radius: 20px;
  box-shadow: 0px, 0px, 10px, rgba(0, 0, 0, 0.829);
  background: #1d1d1d;
  color: white;
  box-sizing: border-box;
  padding: 20px;
}
button:hover {
  background-color: rgb(12, 12, 124);
}
a {
  color: rgba(255, 255, 255, 0.678);
  font-size: 15px;
  background-color: rgba(37, 37, 255, 0.719);
  margin-left: 0px;
  margin-right: 0px;
  margin-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 5px;
  padding-bottom: 10px;
  border-radius: 20px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
a:hover {
  background-color: rgb(12, 12, 124);
  color: rgba(255, 255, 255, 0.678);
}
