/* Styling the navbar */
.navbar {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  background-color: #ffffff;
  padding: 20px 10px;
  font-family: 'Courier New', Courier, monospace;
  text-align: right;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  border-bottom: 3px solid #4d31f1;
}

/* Navbar links */
.nav-links {
  display: inline-block;
}

.nav-links a {
  color: black;
  text-decoration: none;
  margin: 0 15px;
  font-size: 20px;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  font-weight: bold;
  font-style: italic;
}

.nav-links a:hover {
  background: linear-gradient(to right, #799af5, #72f2ca);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: normal;
}

.nav-links a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, #799af5, #72f2ca);
  transition: width 0.3s;
  margin: 0 auto;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Awards page styling */
.awards-container {
  font-weight: bold;
  text-align: center;
  margin-top: 75px;
  font-family: 'Courier New', Courier, monospace;
  padding: 20px;
}

.awards-container h1 {
  font-size: 2.5em;
  background: linear-gradient(to right, #ff69b4, #863dc6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 30px;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  justify-content: center;
}

.award {
  background: #ffffff;
  border: 2px solid #fa69ff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.award:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.award h2 {
  font-size: 1.4em;
  color: #333;
  margin-bottom: 10px;
  background: linear-gradient(45deg, #ff69b4, #640c97);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.award .award-date {
  font-size: 1.1em;
  color: #555;
  font-style: italic;
}

.award-description {
  font-weight: bold;
  font-size: 1em;
  color: #333;
  margin-top: 10px;
}

body {
  background-color: #f5e9fa;
}