/* 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;
}

.nokings {
  padding: 40vh 0;
  text-align: center;
}
.nokings button {
  padding: 8px 24px;
  background-color: #f00808;
  border: 0;
  color: #fff;
  font-weight: bold;
  font-size: 24px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: -1px 15px 32px 11px rgba(0,0,0,0.24);
  -webkit-box-shadow: -1px 15px 32px 11px rgba(0,0,0,0.24);
  -moz-box-shadow: -1px 15px 32px 11px rgba(0,0,0,0.24);
  transition: padding 0.3s ease-in-out, background-color 0.3s ease-in-out, font-size 0.3s ease-in-out, color 0.3s ease-in-out;
}
.nokings button:hover {
  padding: 12px 24px;
  background-color: #ffffff;
  font-size: 28px;
  color: #000;
}

   .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);
  }