* {
  color: white;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}
.underline {
  text-decoration: underline;
}
button {
  background-color: #3b36cc;
  border: none;
  font-size: 16px;
  padding: 8px 12px;
  border-radius: 5px;
  transition: all 0.15s;
  cursor: pointer;
}

button:hover {
  transform: scale(0.95);
}

button:disabled {
  opacity: 0.3;
  cursor: default;
  transition: none;
}

button:disabled:hover {
  transform: none;
}

input {
  color: black;
  font-size: 20px;

}

.delete-btn {
  background-color: rgb(205, 0, 0);
}
.create-button {
  background-color: rgb(26, 117, 26);

}



body {
  background-color: #3b36cc;
  font-family: Verdana;
  font-size: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.navbar {
  background-color: #1a1a40;
  padding: 10px;
  border-radius: 5px;

  display: flex;
  justify-content: space-around;
  margin-bottom: 50px;
}

.container {
  max-width: 600px;
  width: 100%;
}

.form {
  background-color: #1a1a40;
  width: 100%;
  border-radius: 5px;
  padding: 30px;
  gap: 20px;
  display: flex;
  flex-direction: column;
  margin-top: 30px;
}
.article-section {
  width: 100%;
  max-width: 600px;
  margin-top: 40px;
}
.article {
  background-color: #1a1a40;
  padding: 20px;
  border-radius: 5px;
  margin-bottom: 20px;
}

.article > h2 {
  margin-top: 0;
}

.button-group {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.button-group > p {
  margin: 0px;
}

.plus-sign {
  background-color: #1a1a40;
  padding: 10px;
  border-radius: 999px;
  transition: all 0.15s;
}

.plus-sign:hover {
  transform: scale(0.92);
}