﻿/* Scoped section styles */
#specialSection {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: xx-large;
}

/* All links inside specialSection styled as buttons */
#specialSection a {
  display: inline-block;
  text-decoration: none;
  color: white;
  background-color: blue;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-weight: bold;
}

#specialSection a:hover {
  background-color: darkblue;
  color: lightyellow;
}
}

