@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@500&family=Plus+Jakarta+Sans:ital,wght@0,600;1,600&family=Quicksand:wght@300..700&display=swap');
body {
  background: rgb(175,44,171);
  background: linear-gradient(90deg, rgba(175,44,171,1) 2%, rgba(21,5,84,1) 6%, rgba(9,9,121,1) 35%, rgba(20,58,61,1) 61%, rgba(0,212,255,1) 100%);
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: white;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
}

.title {
  text-shadow: 
  -2px 0 #00d4ff,
   0 1px #090979,
   2px 0 #150554,
   0 -1px #af2cab; 
  font-weight: bold;
  font-size:70px;
  outline: black;
  align-self:center;
}

.information {
  opacity: 0;
  animation: fadeIn 2s ease-in forwards;
}

@keyframes fadeIn {
  to {
      opacity: 1;
  }
}
.information img {
  height:300px;
}

.container {
  display: inline-block;
  margin: 10px;
  text-align: center;
  background-color: #4b7c9b;
  border-radius: 10px;
  transition: 0.5s;
}
.container img {
  max-width: 100%;
  height: 100px;
  border-radius: 10px;
}
.container p {
  margin: 5px 0 0;
}
.container:hover {
  transform: translateY(-1.1rem);
}

a {
  color: white;
  text-decoration: none;
}
button {
  background-color: #4b7c9b;
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 10px;
  transition: 0.5s;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

button:hover {
  transform: translateY(-0.5rem);
}

.service {
  background-color: #4b7c9b;
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 10px;
  transition: 0.5s;
}

.service:hover {
  transform: scale(1.1);
}

h1 {
  font-size: 40px;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: transparent; /* Adjust the transparency as needed */
  color: #fff;
  padding: 10px 20px;
  z-index: 999; /* Ensures the navbar stays on top of other content */
}

.logo a {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.nav-links li {
  margin: 5px;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  margin: 25px;
  transition:0.5s;
}

.nav-links li a:hover {
  color: #ccc;
  transform:scale(1.1);
}
.info {
  background-color: transparent;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 0 10px white;
  width: 500px;
  text-align: center;
}