* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  font-family: "Pacifico", cursive;
}

.add_header {
  background: linear-gradient(to right, #feac5e, #c779d0, #4bc0c8);
  border-bottom: 1px solid black;
}

.add_header a {
  text-decoration: none;
}

.slogan {
  font-size: 32px;
  color: black;
  padding-top: 20px;
  text-align: center;
}

.button {
  background-color: bisque;
  border: 2px solid white;
  border-radius: 10px;
  width: 170px;
  margin: 20px auto;
  font-size: 18px;
  text-align: center;
  text-decoration: none;
  color: black;
}

.button:hover {
  background-color: rgb(223, 188, 145);
}

header {
  background: linear-gradient(to right, #feac5e, #c779d0, #4bc0c8);
}

.container {
  max-width: 1150px;
  width: 100%;
  padding: 15px;
  margin: 0 auto;
}
.container::after {
  content: "";
  clear: both;
  display: table;
}

img {
  height: 150px;
  float: left;
  margin-top: 15px;
}
nav {
  float: right;
  text-align: center;
}

nav a {
  text-decoration: none;
  font-size: 24px;
  font-weight: 700;
  color: rgb(3, 3, 3);
  border: 2px solid white;
  border-radius: 10px;
  background-color: rgb(248, 219, 183);
  padding: 5px;
}

nav a:hover {
  background-color: rgb(223, 188, 145);
}

nav ul {
  margin-top: 20px;
  list-style: none;
}

nav li {
  margin-bottom: 20px;
}

/* ----------------------------- */
.articles {
  float: left;
  width: 70%;
  padding: 10px;
}

.items {
  padding: 5px;
  margin-bottom: 25px;
}

.items::after {
  content: "";
  display: table;
  clear: both;
}

.item_img img {
  width: 100%;
}

.item_text {
  float: left;
  width: 70%;
}

.heading {
  font-size: 36px;
}

.desc {
  font-size: 18px;
}

.date {
  font-size: 12px;
  margin-top: 5px;
}

.item_img {
  float: right;
  width: 30%;
  height: 150px;
  width: 150px;
}

.sidebar {
  float: right;
  width: 30%;
  text-align: center;
}

/* ----------------------------- */
.Happy_heading {
  text-align: center;
  font-size: 32px;
}

.Happy_img img {
  width: 100%;
  height: 100%;
}

.Happy_img {
  float: left;
  margin-right: 20px;
  width: 50%;
}

.Happy_text {
  padding-top: 10px;
}

/* .Happy_text p {
  margin: 20px 0px 0px 20px;
} */

/*------------*/
h3 {
  text-align: center;
}

form {
  width: 700px;
  margin: 0 auto;
}

input,
textarea {
  width: 100%;
}

