
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Poppins', sans-serif;
  }
  
  #background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1; 
  }
  
  .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 16px;
    text-align: center; 
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .textimage {
    width: 90%;
    height: 60%;
    background-image: url(./images/PAUL.png);
    background-size: 40%;
    background-position: center;
    background-repeat: no-repeat;
  }

  .buttons {
    margin: auto;
    position: absolute;
    bottom: 5%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .button{
    width: 55px;
    height: 55px;
    background-image: url(./images/fb.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 99%;
    margin: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.3s;
    opacity: 0.5;
  }
  .button:hover{
    opacity: 1;
    transition: 0.3s;
  }

  a{
    text-decoration: none !important;
    color: white;
  }
  .logo{
    width: 12%;
    height: 16%;
    margin: auto;
    position: absolute;
    top: 5%;
    background-image: url(./images/logoboom.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 99%;

  }