/* General styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: #121212; /* Dark background */
  color: #e0e0e0; /* Light text color */
}

header {
  background-color: #1e1e1e; /* Slightly lighter dark background */
  color: #fff;
  padding: 30px 0;
  text-align: center;
}

header h1 {
  font-size: 36px;
  font-weight: 700;
}

header p {
  font-size: 18px;
  margin-top: 10px;
}

main {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

section {
  margin-bottom: 40px;
}

h2 {
  font-size: 28px;
  color: rgba(0, 136, 255, 0.738); /* Accent color for section headers */
  margin-bottom: 10px;
}

h3 {
  font-size: 22px;
  margin-top: 15px;
  color: #e0e0e0;
}

ul {
  list-style-type: none;
  margin-top: 15px;
}

ul li {
  font-size: 18px;
  margin-bottom: 10px;
  color: #e0e0e0;
}

a {
  color: rgba(0, 136, 255, 0.738); /* Accent color for links */
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  color: greenyellow; /* Lighter shade on hover */
}

footer {
  background-color: #1e1e1e;
  color: #e0e0e0;
  text-align: center;
  position: fixed;
  bottom: 0;
  width: 100vw;
}

footer a {
  color: #4CAF50;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
  color: #81c784;
}

/* Responsive design for smaller screens */
@media screen and (max-width: 768px) {
  header h1 {
      font-size: 28px;
  }

  header p {
      font-size: 16px;
  }

  main {
      padding: 20px 10px;
  }

  h2 {
      font-size: 24px;
  }

  h3 {
      font-size: 20px;
  }
}


button{
  height: 4vh;
  width: 10vw;
  font-size:larger;
  border-radius: 10px;
  cursor:pointer;
}

button a{
  text-decoration: none !important;
  color: black !important;
}

@media (orientation:portrait) {
  button{
    width: 30vw;
  }
}