body {
  font-family: Arial, sans-serif;
  background-color: #ffe539;

  display: flex;
  justify-content: center;
  align-items: center;
}

h1 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
  padding: 1rem;
  z-index: 1;
}

.cat-container {
  margin-top: 5rem;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
  
.cat-item {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 20px;
}

.cat-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 2rem;
}

.cat-name {
  font-size: 24px;
  font-weight: bold;
  margin: 0;
}

.votes {
  font-size: 24px;
  font-weight: bold;
  margin: 0;
  padding: 1rem;
}

