body {
  padding: 0;
  margin: 0;
  background-color: #000;
}

main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 100px 15px;
}

main img {
  width: 80vw;
  max-width: 600px;
}

#mc_embed_signup {
    margin-top: 20px;
    font:14px Helvetica,Arial,sans-serif;
    width:100%;
    color: #fff;
}

#mc_embed_signup .button {
    border-radius: 0;
    background-color: transparent;
    border: 1px solid #fff;
}

#mc_embed_signup input.email {
    border-radius: 0px;
    color: #000;
}

h1{
  color: #fff;
  text-align: center;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 40px;
}

h2{
  color: #fff;
  text-align: center;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 25px;
  margin-bottom: 35px;
}

input{
  margin-bottom: 15px;
  padding: 10px 20px;
  min-width: 225px;
}

input[type="submit"]{
  cursor:pointer;
  margin-bottom: 20px; 
  padding: 8px 15px;
  min-width: auto;
}
label{
  font-size: 20px;
  display: block;
  margin-bottom: 5px;
  text-align: center;
  color: #fff;
  font-family: "Lato", sans-serif;
}
.grid{
  display: flex;
  gap: 20px;
  justify-content: center;
}

.grid div{
  text-align: center;
}

@media screen and (max-width:1000px){
  .grid{
      display: block;
  }
}

@media screen and (max-width:768px){
  main{
    padding: 50px 30px;
  }

  h1{
    font-size: 30px
  }

  h2{
    font-size: 22px;
  }

  
}


