body {
  font-family: "Archivo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
  background-color: #02a6ff83;
  color: #000;
  margin: 0;
  display: grid;
  align-content: flex-start;
  justify-self: center;
  padding: 30px;
  height: 100vh;
}
.header {

  padding: 20px;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
}

.container {
  padding: 30px;
  background-color: #fff;
  border: 2px solid #000;
  box-shadow: 4px 6px;
  border-radius: 27px;
  max-width: 500px;
  width: 90%;
  
}

h1 {
  font-size: 32px;
  margin-bottom: 20px;
}

h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

p {
  font-size: 16px;
  margin-bottom: 20px;
}

button {
  background-color: #008000;
  color: #fff;
  border: 2px solid #000;
  border-radius: 27px;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 4px 4px 0 #000; /* Add shadow */
}

button:hover {
  transform: translateY(-3px);
  border: 2px solid #000;
  border-radius: 27px;
  box-shadow: 6px 6px 0 #000;
  
}

button:active {
  transform: translateY(0);
  border: 2px solid #000;
  border-radius: 27px;
  box-shadow: 6px 6px 0 #000;
}