body {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family:  Winky Sans;
  background-color: #f0fdfa;
  /* color: white; */
}
.main {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 12px;
}
.left {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  /* border: 4px solid black;
  border-radius: 32px; */
  width: 500px;
  padding: 22px;

  
}
.heading {
  font-size: 28px;
  font-weight: 800;
  text-align: center;
  font-family: Roboto;
}
.sub-heading {
  padding-top: 20px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  font-style: italic;
  font-family: Roboto;
}
.con {
  
  width: 400px;
  height: 400px;
  display: flex;
  padding: 22px;
  border: 4px solid black;
  border-radius: 12px;
  
}

.imp {
  display: flex;
  flex-direction: column;
  width: 481px;
}
button {
  display: inline;
  margin: auto;
  width: 30%;
  padding:12px 22px;
  background-color: black;
  color: white;
  border: none;
  outline: none;
  border-radius: 12px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.4s ease;
}

button:hover {
  color: black;
  background-color: #f0fdfa;
  border: 2px solid black;
}
input {
  display: inline;
  width: 100px;
  text-align: center;
  padding: 6px 6px;
  margin-left: 12px;
  border: 2px solid black;
  border-radius: 6px;
  font-size: 16px;
}

span {
  display: inline;
  font-size: 22px;
  color: black;
  font-weight: 600;
  margin-left: 12px;
  font-family: Poppins;
}

p {
  font-size: 18px;
}
footer {
  font-size: 20px;
  text-align: center;
  font-weight: 455;
  line-height: 32px;
}