* {
  margin: 0; transition: 0.5s;
}

a {
  -webkit-tap-highlight-color: #fff0;
  -webkit-tap-highlight-color: #fff0;
  text-decoration: none
}

.body {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: auto;
  scroll-behavior: smooth;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-radius: 0;
}

.h1 {
 background: linear-gradient(90deg, rgba(60, 100, 60, 1) 20%, #000 80%);  ;
 -webkit-background-clip: text;
 background-clip: text;
 -webkit-text-fill-color: transparent;
 color: transparent;
}

b { 
  color: rgba(60, 100, 60, 1);
}

.flex {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}

div { 
  width: 100%;
}

.flex a {
  display: inline-block;
  width: 80%;
  border-radius: 15px;
  border: 0.5px solid #555;
  padding: 20px;
  box-shadow: 10px 10px 80px #eee;
  z-index: 999;
  max-width: 300px;
 background: linear-gradient(90deg, rgba(60, 100, 60, 1) 20%, #000 70%);  ;
 -webkit-background-clip: text;
 background-clip: text;
 -webkit-text-fill-color: transparent;
 color: transparent;
}

.flex a:hover {
  transform: scale(0.9);
  transition: 0.1s;
}

.flex .link1 {
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
}

.flex .link2 {
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
}

@media (min-width:600px) {
  .flex {
    flex-direction: row;
  }
  
  .flex .link1 {
    border-radius: 40px 15px 15px 40px;
  }

  .flex .link2 {
    border-radius: 15px 40px 40px 15px;
  }
}