body {
  font-family: Arial, sans-serif;
}

.top-bar {
  background-color: #990000;
}

.site-title {
  color: white;
  font-size: 34px;
  font-weight: bold;
}

.top-user {
  color: white;
}

.profile-icon {
  font-size: 48px;
  line-height: 1;
}

.section-title {
  color: #990000;
}

.title-link {
  color: white;
  text-decoration: none;
}

.title-link:hover {
  color: white;
  text-decoration: none;
}

.current-user-link {
  color: white;
  text-decoration: none;
}

.current-user-link:hover {
  color: white;
  text-decoration: underline;
}

.following-toggle {
  background-color: white;
}

.following-toggle:hover {
  background-color: #f8f9fa;
}

.following-user-link {
  color: #222222;
  text-decoration: none;
}

.following-user-link:hover {
  color: #990000;
  text-decoration: underline;
}

.following-button {
  background-color: #87ceeb;
  color: black;
  font-weight: bold;
  border: 1px solid #87ceeb;
}

.following-button:hover {
  background-color: #87ceeb;
  color: black;
  border-color: #87ceeb;
}

.unfollow-hover-button {
  background-color: white;
  color: red;
  font-weight: bold;
  border: 1px solid red;
}

.unfollow-hover-button:hover {
  background-color: white;
  color: red;
  border-color: red;
}

.profile-howl-user-link {
  color: #222222;
  text-decoration: none;
}

.profile-howl-user-link:hover {
  color: #990000;
  text-decoration: underline;
}

.top-avatar,
.profile-avatar,
.following-avatar,
.feed-avatar {
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.top-avatar {
  width: 40px;
  height: 40px;
}

.profile-avatar {
  width: 64px;
  height: 64px;
}

.following-avatar,
.feed-avatar {
  width: 40px;
  height: 40px;
}

@media (max-width: 768px) {
  .site-title {
    font-size: 28px;
  }

  .top-user {
    position: static !important;
    margin-top: 8px;
  }

  .top-bar .container {
    flex-direction: column;
  }
}