
  p {
    position: relative;
    left: 50%;
    color: white;
  }
  
  body {
    background-image:url("../img/background.webp") ;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position-y: 0px;
  }
  
  


   #bans {
    max-width: 200px;
    width: 170%;
    position: relative;
    left: 46%;
    transition: 300ms;
  }
  #bans:hover {
    transform: scale(1.5);
    transition: 300ms;
 

  }

  button {
    background-color: green;
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
    position: relative;
    left: 42%;
 
  }
