
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  }
  
  .wrapper{
    position: absolute;
    top: auto;
    background: #0d0404;
    width: 100%;
    text-align: center;
    padding: 25px 25px 30px 25px;
  }
  
  .wrapper img{
    max-width: 90px;
  }
  
  .wrapper .content{
    margin-top: 10px;
  
  }
  
  .hide{
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  
  .content header{
    font-size: 25px;
    font-weight: 600;
  }
  
  .content p{
    color: #dbd6d6;
    margin: 5px 0 20px 0;
  }
  
  .content .buttons{
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .buttons .item{
    margin: 0 10px;
  }
  
  .buttons button{
    padding: 10px 20px;
    background: #FCBA7F;
    border: none;
    outline: none;
    font-size: 16px ;
    font-weight: 500;
    color: #fff ;
    cursor: pointer;
    border-radius: 5px;
  }