/* 1. Box Sizing & Padding Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* 2. Set Default Font Styles */
html {
  font-family: system-ui, sans-serif;
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  tab-size: 4;
  line-height: 1.5;
  scroll-behavior: smooth;
}

/* 3. Default Body Styles */
body {
  margin: 0;
  font-family: inherit;
  line-height: inherit;
  text-rendering: optimizeSpeed;
  background-color: #fff;
  color: #000;
}

/* 4. Remove List Styles */
ul,
ol {
  list-style: none;
}

/* 5. Remove Text Decoration on Links */
a {
  text-decoration: none;
  color: inherit;
}

/* 6. Image and Media Default */
img,
svg {
  max-width: 100%;
  display: block;
  height: auto;
}

/* 7. Button Reset */
button,
input,
textarea,
select {
  font: inherit;
  border: none;
  background: none;
  outline: none;
}

/* 8. Table Reset */
table {
  width: 100%;
  border-collapse: collapse;
}

/* 9. Heading and Paragraph Reset */
h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}

/* 10. Responsive Text Sizes */
@media (max-width: 640px) {
  html {
    font-size: 14px;
  }
}

.btn {
  /* padding-top: ; */
  cursor: pointer;
  transition: 0.3s;
  white-space: nowrap;
  color: white;
  background-color: #76B99A;
  border: none;
  border-radius: 5px;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
  /* font-size: 20px; */
}
.btn:hover {
  background-color: #83d4ae;

}
