.desktop {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background: linear-gradient(#00fe05, #1b5907, #27fe00);
}

.mobile {
  width: 100%;
  display: none;
  align-items: center;
  height: 100vh;
  background: linear-gradient(#00fe05, #1b5907, #27fe00);
}
.button {
  background: linear-gradient(#00fe05, #1b5907, #27fe00);
  border: none;
  border-radius: 10px 10px 10px 10px;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 30px;
  margin: 4px 2px;
  cursor: pointer;
  font-weight: bold;
}
.button1:hover {
  background: linear-gradient(#c4d7d9, #c4c9d3, #d1d5db);
  color: blue;
  
}
@media screen and (max-width: 768px) {
  .desktop {
    display: none;
  }
  .mobile {
    display: flex;
  }
}