/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
    color: #333;
}

p {
    line-height: 1.6;
}

a {
    text-decoration: none; /* Removes the underline */
    color: inherit; /* Makes the text color the same as its parent */
}

/* Transparent Top Bar */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8); /* Slight transparency */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    height: 80px;
    box-sizing: border-box;
}

/* Logo Styling */
.logo {
    font-size: 1.8rem;
    font-weight: bold;
    white-space: nowrap;
}

.audio {
    font-weight: 300;
    color: #333;
}

.jo {
    font-weight: 700;
    color: #007bff; /* Blue color for Jo */
}

/* Navigation Bar */
nav {
    display: flex;
    gap: 25px;
}

nav a {
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
    transition: color 0.3s;
}

nav a:hover {
    color: #007bff;
}

/* Container for Page Content */
.container {
    margin-top: -40px; /* Ensures content starts below the fixed header */
    padding: 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    display: flex; /* Use flexbox for layout */
    align-items: center; /* Align items vertically in the center */
    gap: 5px; /* Add space between the image and contact text */
}

.loader {
  --size: 20px;

  display: flex;
  justify-content: center;
  align-items: center;

  /* gap: 10px; */
  gap: calc(var(--size) / 2);

  /* height: 100px; */
  height: calc(var(--size) * 5);
}

.loader div {
  /* width: 20px; */
  width: var(--size);

  /* height: 20px; */
  height: var(--size);

  /* border-radius: 20px; */
  border-radius: var(--size);

  background-color: #ffd700;
  animation: wave 2s infinite ease-in-out;
}

@keyframes wave {
  /* 0%, 100% {
    height: 20px;
    background-color: #ffd700;
  } */

  25% {
    /* height: 100px; */
    height: calc(var(--size) * 5);
    background-color: #fc00ff;
  }

  50% {
    /* height: 20px; */
    height: var(--size);
    background-color: #9c73f8;
  }

  /* 100% {
    height: 20px;
    background-color: #ffd700;
  } */
}

/* .loader :nth-child(1) {
  animation-delay: 0s;
} */

.loader :nth-child(2) {
  animation-delay: 0.2s;
}

.loader :nth-child(3) {
  animation-delay: 0.4s;
}

.loader :nth-child(4) {
  animation-delay: 0.6s;
}

.loader :nth-child(5) {
  animation-delay: 0.8s;
}

