* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
}

.btn {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 10;
}

.btn div {
  width: auto;
  max-width: none;
  padding: 10px 20px;
  background: linear-gradient(160deg, #c7ff46, #2ed745);
  border: 3px solid #00ffe1;
  border-radius: 12px;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
}

.btn2 {
  position: fixed;
  top: 70px;
  left:20px;
  z-index: 10;
}

.btn2 div {
  width: auto;
  max-width: none;
  padding: 10px 20px;
  background: linear-gradient(160deg, #c7ff46, #2ed745);
  border: 3px solid #00ffe1;
  border-radius: 12px;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
}


body {
  margin: 0;
  min-height: 100vh;
  
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: flex-start;
  gap: 28px;
  text-align: center;

  padding: 120px 20px 60px;

  overflow-y: auto;
  overflow-x: hidden;
  isolation: isolate;

  background: linear-gradient(135deg, rgb(25, 148, 87), rgb(28, 176, 159), rgb(15, 49, 104));
  background-attachment: fixed;
}

body > div:not(.btn) {
  background: linear-gradient(160deg, #c7ff46, #2ed745);
  width: 100%;
  max-width: 350px;
  height: auto;
  border: 3px solid #00ffe1;
  border-radius: 16px;
  box-shadow: 3px 3px 8px;
  padding-left: 20px;
  padding-right: 20px;
}

body h1 {
  font-family: 'Times New Roman', Times, serif;
  font-weight: bold;
}

body h3 {
  font-family: 'Courier New', Courier, monospace;
  color: #fcfcfc;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

body p {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}