

header {
      position: fixed;
      top: 0;
      left: 0;
      background: #fc0276;
      color: #fff;
      text-align: center;
      z-index: 1100;
}

.header-image {
  margin-top: 10px;
  margin-bottom: 10px;
  width: 50px;
  transition: opacity 1s ease;
}

.btn {
  margin-top: 1rem;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 10px;
  background: #fc0276;
  color: white;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s;
  text-decoration: none;
}

.btn:hover {
  background: #333;
}

.legal {
  text-align: center;
  font-size: 0.9rem;
  color: #fff;
  padding: 2rem 0rem 1rem 0rem;
  background: #fc0276;
}

.legal a {
  color: #fff;
  margin: 0 0.5rem;
  text-decoration: none;
}

.legal a:hover {
  text-decoration: underline;
}


footer {
      width:100px;
      position: fixed;
      bottom: 20px;
      right: 0px;
      transform: translateX(-50%);
      gap: 1rem;
      z-index: 1000;
    }

    .social-btn {
      background: #fc0276;
      border: none;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 45px;
      height: 45px;
      transition: background 0.3s;
      color: white;
      text-decoration: none;
      font-size: 20px;
      margin: 10px;
    }

    .social-btn-img {
      width: 20px;
      height: 20px;
    }

    .social-btn:hover {
      background: rgba(255,255,255,0.2);
    }
