* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: linear-gradient(135deg, #667eea, #764ba2);
}

.container {
  width: 80%;
  margin: 0 auto;
}

header {
  background: #333;
  color: #fff;
  padding: 20px 0;
}

.blog-posts {
  padding: 40px 0;
  padding-top: 0px;
}
.header{
  text-align: center; 
  background: transparent;
  margin-bottom: 20px;
  margin-top: 20px;
  font-size: 30px;
  color: rgba(255, 255, 255, 0.85);
}
.blog-post {
  background: rgba(255, 255, 255, 0.85);
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.blog-post .post-title {
  font-size: 1.8em;
  margin-bottom: 10px;
}

.blog-post .post-description {
  font-size: 1.2em;
  margin-bottom: 15px;
}

.blog-post .post-coordinates {
  font-size: 1em;
  margin-bottom: 10px;
  color: #555;
}

.blog-post .post-link {
  color: #007BFF;
  text-decoration: none;
  font-weight: bold;
}

.blog-post .post-link:hover {
  text-decoration: underline;
}
 


 
.loader {
  margin: auto;
  margin-top: 40vh;
  margin-bottom: 40vh;
   
  width: 50px;
  --b: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  -webkit-mask:
    repeating-conic-gradient(#0000 0deg,#000 1deg 70deg,#0000 71deg 90deg),
    radial-gradient(farthest-side,#0000 calc(100% - var(--b) - 1px),#000 calc(100% - var(--b)));
  -webkit-mask-composite: destination-in;
          mask-composite: intersect;
  animation: l5 1s infinite;
}
@keyframes l5 {to{transform: rotate(.5turn)}}
