* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  overflow-x: hidden;
}

.navbar {
  padding: 15px;
}

.navbar a {
  text-decoration: none;
  color: black;
  font-weight: 500;
}

.navbar a:hover {
  color: blue;
}

.container-fluid {
  position: relative;
  width: 100%;
}

.spider-overlay {
  position: absolute;
  top: 30%;
  left: 15%;
}

.spider-circle {
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, #ff6347, #000);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.spider {
  width: 40px;
  height: auto;
}

/* Section Styles */
.section {
  padding: 50px 0;
}

.content h1 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
}

.content p {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
}

.circle-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
}

.oval-image {
  width: 100%;
  max-width: 350px;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
}

.footer {
  position: absolute;
  margin-top: 20px;
  left: 0;
  width: 100%;
  background-color: #2a8b9d; 
  color: white; 
  font-size: 18px; 

  padding: 30px 5%;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left h2 {
  font-size: 24px;
  margin: 0;
}

.footer-left p {
  font-size: 16px;
  margin-top: 5px;
}

.footer-right p {
  margin: 5px 0;
  font-size: 16px;
}

.footer-right a {
  color: white;
  font-weight: bold;
  text-decoration: none;
}

.footer-right a:hover {
  text-decoration: underline;
}
