body {
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  background: linear-gradient(1180deg, rgb(134, 134, 251), rgb(244, 147, 147));
  background-repeat: no-repeat;
  background-attachment: fixed;
}
h1 {
  display: flex;
  justify-content: center;
  font-size: 50px;
  font-family: cursive, sans-serif;
  margin-bottom: 0px;
  color: #0d6865;
  text-shadow: 0px 8px 6px rgba(0, 0, 0, 0.2);
}
main {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgb(241, 235, 235);
  border-radius: 15px;
  box-shadow: 0 18px 16px rgba(0, 0, 0, 0.2);
  width: 500px;
  max-width: 500px;
  height: 460px;
  padding: 20px;
  gap: 20px;
}

.form {
  display: flex;
  gap: 40px;
  margin-top: 20px;
}
input {
  border-radius: 60px;
  color: rgb(131, 9, 245);
  font-size: 18px;
  width: 200px;
  border: 3px solid #0d6865;
  padding: 10px;
  text-align: center;
}

#btnadicionar {
  border-radius: 8px;
  background-color: #0d6865;
  color: white;
  padding: 10px 20px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s ease;
}

#btnadicionar:hover {
  background-color: rgb(53, 116, 101);
  transform: scale(1.05);
}

#btnadicionar:active {
  transform: scale(0.95);
  box-shadow: none;
}

.p {
  display: flex;
  justify-content: center;
  width: 100%;
}
.p p {
  font-size: 20px;
  color: #0d6865;
  text-align: left;
}
