h1 {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
h2 a {
    text-decoration: none;
    color: black;
    background-color: orange;
    box-shadow: 0 0 30px orangered;
    border-radius: 10px;
}
.logo {
    width: 90px;
    height: 40px;
}
header {
    background-color: black;
    color: aqua;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    
}
nav {
    list-style-type: none; 
    margin-top: -20px;
    margin-bottom: -25px;
}
nav li {
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px;
}
nav a {
    color: aqua;
    text-decoration: none;
    
}
nav a:hover {
    background-color: aqua;
    color: black;
    padding: 10px;
}
.linkbuy a:hover {
    background-color: yellow;
}
.pic1 {
   display: block;
   margin: 0% auto;
}
h2, .intro {
    background-color: aqua;
    margin-left: -9px;
    margin-right: -9px;
 }
.intro {
    background: linear-gradient(to bottom, aqua, white);
    margin-bottom: -30px;
    padding-top: 10px;
    padding-left: 10px;
    padding-right: 10px;
    margin-top: 75px;
    
}
#yellow {
    color: black;
    font-size: large;
    
}
 a:hover {
background-color: aqua;
}
.fadeup {
    background-color: aqua;
    margin-left: -9px;
    margin-right: -9px;
    padding: 20px;
    margin-top: 40px;
    background: linear-gradient(to top, yellow, white);
}
footer {
    text-align: center;
    background-color: #f0f0f0;
    padding: 5px;
    margin-left: -8px;
    margin-right: -8px;
}
h4 {
    text-align: center;
}
.pitch  {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 90px;
    margin-top: -100px;
}
form {
    display: flex;
    flex-direction: column;
    align-items: left;
 }
table {
    text-align: center;
    border-collapse: collapse;
    margin: 0% auto;  
    margin-top: -30px;
}
h2 {
    text-align: center;
}
th, td {
    border: 1px solid white;
    padding: 10px;
    background-color: yellow;
    list-style-type: circle; 
}
ul, .premium .basic {
    margin-left: -25px;
}
p{
    text-align: center;
    font-size: larger;
    font-weight: bold;
}


.brave {
    text-align: center;
    margin-bottom: 50px;
    margin-left: -8px;
    margin-right: -8px;
    margin-top: -1px;
    padding-left: 80px;
    padding-right: 80px;
    padding-top: 20px;
    background-color: yellow;
    background-image: linear-gradient(to bottom, yellow, white);
}



#formContainer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); 
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 77px;
  }
  
  #formContainer form {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
  }
  
  #formContainer .close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    margin-top: 20px;
  }

  .buyButton {
    background-color: yellow;

  }

  .terms a {
    font-size: small;
    text-decoration: none;
    color: black;
  }

  .terms {
    font-size: small;
  }

  .pic1 {
    animation: rotation 8s infinite linear;
    height: 80px;
    width: 110px;
    justify-content: center;
  }
  
  @keyframes rotation {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }

  .night {
    background-color: black;
    margin: -60px -10px -41px -10px;
    padding: 0px;
    background-image: linear-gradient(to top, rgb(253, 253, 253) 0%, black 20%, black 80%, rgba(255, 255, 255, 100%) 100%);
      
  }