* {
  color: white;
  box-sizing: border-box;
}
body {
  background-color: #3b36cc;
  font-family: Verdana;
  font-size: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 15px;
}
a {
  text-decoration: none;
}
.underline {
  text-decoration: underline;
}
nav {
  background-color: #1a1a40;
  padding: 15px;
  border-radius: 5px;
  display: flex;
  justify-content: space-around;
  margin-bottom: 30px;
}
.container {
  width: 100%;
  max-width: 600px;
}
.form {
  background-color: #1a1a40;
  border-radius: 4px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}
input {
  background-color: #5e5ebe;
  font-size: 22px;
  border-radius: 4px;
  padding: 4px;
  outline: none;
  border: none;
}
textarea {
  background-color: #5e5ebe;
  border-radius: 4px;
  font-size: 22px;
  height: 150px;
  padding: 4px;
  border: none;
  outline: none;
  resize: none;
}
button {
  background-color: #3b36cc;
  font-size: 20px;
  padding: 8px 12px;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  transition: transform 0.15s;
}

button:hover {
  transform: scale(0.95);
}
.create-article-btn {
  background-color: rgb(0, 166, 62);
}
.articles-section {
  margin-top: 30px;
}
.article {
  background-color: #1a1a40;
  padding: 25px;
  border-radius: 5px;
  margin-bottom: 20px;
  text-align: start;
}
.article > h2 {
  margin-top: 0;
}
.article-bottom {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 20px;
}
.delete-btn {
  background-color: rgb(251, 44, 54);
}
.article-bottom > p {
  margin: 0;
}
