/* stylelint-disable @stylistic/selector-list-comma-newline-after */
body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.hamburger {
  cursor: pointer;
  width: 30px; /* Adjust size as needed */
  margin-left: 30px;
}

.bar {
  display: block;
  height: 4px; /* Thickness of the bars */
  width: 100%;
  background-color: rgb(255, 255, 255); /* Color of the bars */
  margin: 4px 0; /* Space between bars */
}

.dropdown-content {
  display: none; /* Hidden by default */
  position: absolute;
  background-color: rgb(216, 216, 216);
  min-width: 160px;
  box-shadow: 0 8px 16px #3498DB;
  z-index: 100;
}

.dropdown-content a {
  color: rgb(0, 0, 0);
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-family: 'Inria Serif', serif; /* Use Inria Serif */
}

.dropdown-content a:hover {
  background-color: #3498DB;
}

.show {
  display: block; /* Show the dropdown menu */
}


.navbar {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  display: flex; /* Use flexbox for layout */
  align-items: center; /* Vertically center items */
  justify-content: space-between; /* Space items evenly */
  background-color: #067F9D; /* Navbar background color */
  color: white; /* Text color */
  padding: 10px 20px; /* Padding around the navbar */
  z-index: 1000; /* Ensures navbar is above other content */
  overflow: hidden;
}

.navbar .hamburger {
  font-size: 24px; /* Size of the hamburger icon */
  cursor: pointer; /* Pointer cursor on hover */
}

.navbar .headline {
  text-align: center; /* Center the headline text */
  font-family: 'Inria Serif', serif; /* Use Inria Serif */
}

.navbar .headline h1 {
  margin: 0; /* Remove default margin */
  padding: 10px;
  font-size: 30px; /* Font size for headline */
}

.navbar .headline h2 {
  margin: 0; /* Remove default margin */
  padding: 10px;
  font-size: 17px; /* Font size for subtitle */
  font-weight: normal; /* Normal weight for subtitle */
}

.icon-bar {
  width: 90px; /* Set a specific width */
}

.icon-bar a {
  display: block; /* Make the links appear below each other instead of side-by-side */
  text-align: center; /* Center-align text */
  padding: 16px; /* Add some padding */
  transition: all 0.3s ease; /* Add transition for hover effects */
  color: white; /* White text color */
  font-size: 36px; /* Increased font-size */
}

.container {
  display: flex;
  flex-direction: column; /* Stack elements vertically */
  align-items: center;     /* Center horizontally */
  justify-content: center; /* Center vertically */
}

iframe {
  width: 80%; /* Make the iframe responsive */
  border: 0; /* Remove border */
  padding: 30px;
}

.icon-container {
  display: flex;          /* Use flexbox for icon and image */
  align-items: center;    /* Align items vertically */
}

.centered-image {
  max-width: 80%; /* Responsive image */
  height: auto;    /* Maintain aspect ratio */
  padding: 30px;
  display: block;        /* Make it a block element */
  margin: 0 auto;      /* Center horizontally */
}

.centered-text {
  margin-top: 20px; /* Space between image and text */
  color: #067F9D; 
  font-family: 'Inria Serif', serif;
  padding: 20px;
  font-size: 18px;
}
  
.volume-icon {
  font-size: 24px; /* Adjust icon size */
  color: #067F9D;    /* Change color as needed */
  position: fixed;
  margin-left: -50px;
}