/* Reset default margins */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  width: 100%;
  font-family: Helvetica, sans-serif;
}

.background {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background-image: url('trump.jpeg'); /* Replace with your image URL */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem;
  color: white;
  justify-content: center;
}

   .share-buttons-wrapper {
    display: flex;
    justify-content: center;
    margin: 10px 0;
    position: fixed;
    bottom: 25px;
    width: 100%;
  }

  .share-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }

  .share-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f00808;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    transition: background-color 0.3s ease;
  }

  .share-buttons a:hover {
    background-color: #0015BC;
  }

  .share-buttons img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
  }