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

body {
  font-family: 'Optima', 'Segoe UI', 'Helvetica Neue', sans-serif;
  background: url('gug_bw.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #111;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

.container {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(4px);
  padding: 40px;
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
  transition: background 0.3s ease;
}

.container:hover {
  background: rgba(255, 255, 255, 0.9);
}

.blog-page .container {
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  background: rgba(255, 255, 255, .9);
}

.blog-page .container:hover {
  background: rgba(255, 255, 255, .9); /* Same as normal */
}

blockquote {
  font-style: italic;
  margin: 1.5em 10px;
  padding: 0.5em 10px;
  border-left: 4px solid #ccc;
  color: #555;
  background-color: #f9f9f9;
}

h1 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

a {
  color: #003366;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

a:hover {
  color: #003366;
}

ul {
  list-style-type: none;
  padding-left: 0;
}

li {
  margin-bottom: 12px;
}

hr {
  border: none;
  border-top: 1px solid #ccc;
  margin: 30px 0;
}

@media (max-width: 600px) {
  .container {
    padding: 20px;
  }
}

.navbar {
  margin-bottom: 30px; /* increase this if needed */
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
}

.navbar ul {
  display: flex;
  justify-content: center;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0 auto; 
  background: none;
  box-shadow: none;
  border-radius: 0;
  backdrop-filter: none;
}
.navbar a {
  font-weight: 600;
  color: #003366;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-bottom 0.2s ease;
}

.navbar a:hover {
  border-bottom: 1px solid #003366;
}


@media (max-width: 600px) {
  .navbar ul {
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }
}


.container img {
  display: block;      
  margin: 0 auto;     
  max-width: 300px;  
  height: auto;
}
