:root {
  font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  font-weight: 400;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}

*,
*:before,
*:after {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
}

.container {
  position: relative;
  margin: 0 auto;
  max-width: 1240px;
}

.action-btn {
  font-size: 1.5rem;
  font-weight: 700;
  cursor: pointer;
  color: #23402c;
  height: 50px;
  width: 260px;
  border-radius: 25px;
  outline: none;
  background: #fff;
  border: none;
  box-shadow: 0 0 #000, 0 0px 4px rgb(91 220 117 / 70%),
    0 0px 10px rgb(91 220 117 / 70%);
}

.tab-btn {
  font-size: 1.3rem;
  cursor: pointer;
  color: #fff;
  height: 50px;
  width: 100px;
  border-radius: 25px;
  outline: none;
  border: none;
  background: transparent;
}

.tab-btn span {
  font-size: 1rem;
}

.tab-btn.active {
  color: #23402c;
  background: #fff;
  box-shadow: 0 0 #000, 0 0px 4px rgb(91 220 117 / 70%),
    0 0px 10px rgb(91 220 117 / 70%);
}

@media screen and (max-width: 640px) {
  .container {
    padding: 16px;
  }
}