/* Body styling */
body {
  background-color: rgb(220, 252, 250);
  margin: 0;
  padding: 0;
  font-family: 'Courier New', Courier, monospace;
}

/* Styling the navbar */
.navbar {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  background-color: #ffffff;
  padding: 20px 10px;
  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%;
}

/* Contact page styling */
.contact-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding-top: 30px;
}

.contact-box {
  background-color: #ffffff;
  padding: 30px;
  border: 3px solid #4d31f1;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  width: 60%;
  max-width: 900px;
}

.contact-info {
  flex: 2;
  text-align: left;
  margin-right: 10px;
}

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

.contact-info p {
  font-size: 1.2em;
  color: #333;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.contact-info a {
  font-size: 1.5em;
  text-decoration: none;
  color: #fa69ff;
  transition: color 0.3s ease, transform 0.3s ease;
}

.contact-info a:hover {
  color: #12504c;
  transform: translateY(-3px);
}

.contact-image {
  flex: 1;
  text-align: center;
}

.contact-image img {
  max-width: 100%;
  border-radius: 0%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}