html {
  scroll-behavior: smooth;
}

/* Set background color for the entire page */
body {
  background-color: #349beb; /* Background color */
  margin: 0; /* Remove default margins */
  font-family: Arial, sans-serif; /* Set a default font */
  color: white; /* Text color */
}

/* Header styles */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #333;
}

h1 {
  margin: 0;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

nav ul li {
  display: inline-block;
  margin-right: 20px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  padding: 5px 10px;
  transition: background-color 0.3s ease;
}

nav ul li a:hover {
  background-color: #555;
  border-radius: 5px;
}

/* Main section styles */
main {
  padding: 20px;
}

section {
  padding: 20px 0;
}

h2 {
  font-size: 24px;
}

/* Contact button styles */
.contact-button {
  padding: 8px 16px;
  border: none;
  border-radius: 8px;
  background-color: #f2f2f2;
  color: #333;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.contact-button:hover {
  background-color: #e0e0e0;
}
