body {
  background-color: black;
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  padding: 20px;
}

/* Add pulse animation */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

header {
  background-color: rgb(22, 20, 22);
  color: rgb(245, 242, 242);
  padding: 20px;
  text-align: center;
  animation: pulse 3s;
}

main {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.article {
  background-color: #1a1919;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 20px;
  width: 300px;
  animation: pulse 3s;
}

.article h2 {
  color: #5483b5;
  font-size: 24px;
  margin-bottom: 10px;
}

.article p {
  color: #d4c2c2;
  font-size: 16px;
}

.article a {
  display: inline-block;
  background-color: black;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}

.article a:hover {
  background-color: #a1a1a1;
}

.image-container {
  position: absolute;
  top: 100px;
  left: 50px;
  margin-right: 22px;
  z-index: 1;
  width: 160px;
  max-width: calc(100% - 40px);
  animation: pulse 3s;
}

.image-container img {
  width: 100%;
  height: auto;
}

/* styling for user login and sign up buttons*/
.user-button-container {
  text-align: right;
  padding-right: 20px;
  padding-top: 80px;
}

.user-button-container button {
  color: #a1a1a1;
  background-color: rgb(28, 27, 27);
  border: 1px solid #a1a1a1;
  font-family: "Arial", sans-serif;
  font-size: 16px;
  padding: 10px 20px;
}

.user-button-container button:hover {
  background-color: #a1a1a1;
  color: rgb(34, 32, 32);
}

/* Add styling for rated stars */
.star.rated {
  color: gold; /* Change the color of rated stars */
}