html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

body {
  background: url('../media/pictures/background/IMG_20240122_083410.jpg') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
}

main {
  flex: 1;
}

header,
footer {
  background-color: #f4f4f4;
  padding: 20px;
}

footer {
  border-top: 1px solid #ddd;
}

/* Footer links */
footer a:hover {
  text-decoration: underline;
}

.nav-menu,
.footer-nav ul {
  list-style: none;
  display: flex;
  gap: 15px;
  padding: 0;
  margin: 0;
}

.nav-menu li,
.footer-nav li {
  display: inline;
}

.nav-menu a,
.footer-nav a {
  text-decoration: none;
  color: #666;
}

.footer-nav a:visited {
  text-decoration: none;
  color: #333;
}

.container {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.bg-light-blue {
  background-color: #083055;
}

.contact-info h4,
.contact-info p {
  margin: 5px 0;
}

.form-control,
.form-check-input {
  border-radius: 10px;
}

textarea.form-control {
  height: 200px;
}

.form-switch .form-check-input {
  width: 3rem;
  height: 1.5rem;
}

.form-switch .form-check-input:checked {
  background-color: #007bff;
}

.carousel-img {
  object-fit: contain;
  height: 600px;
}


a {
  color: #0000ff;
}

a:visited {
  color: #7700ff;
}

h1,
h2,
h3 {
  font-family: Arial, Helvetica, sans-serif;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  font-size: 1rem;
  font-family: sans-serif;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #000;
  color: #fff;
  padding: 8px 16px;
  z-index: 100;
  text-decoration: none;
}

.skip-link:focus {
  top: 0;
}