body{
    background-color: #000000;
}
h1{
    color:#ffffff;
    font-size: 200px;
    text-align: center;

}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: #ffffff;
  }
  
  img {
    height: 70px; /* Adjust based on your logo size */
  }
  
  button {
    border: none;
    background-color: #ffffff;
    color: #000000;
    padding: 0.5rem 1rem;
    font-size: 30px;
    cursor: pointer;
  }
  
  button:hover {
    opacity: 0.8;
    color: #00BF63;
  }

  @media only screen and (max-width: 767px) {
    h1{
      color:#ffffff;
      font-size: 80px;
      text-align: center;
  
  }
  }