:root {
  --colorPrimary: #123526;
  --colorPrimaryDark: #0d1f1a;
  --colorPrimaryLight: #224a38;
  --colorSecondary: #bcaa58;
  --colorBG: #eee;
  --textLight: #757575;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
html {
  font-size: 20px;
  scroll-behavior: smooth;
  letter-spacing: 1px;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  background-color: var(--colorBG);
}

body {
  position: relative;
}

section {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.wrapper {
  width: 100%;
  height: 100%;
  max-width: 1500px;
}

.button {
  text-decoration: none;
  background-color: var(--colorSecondary);
  color: white;
  font-size: 20px;
  font-weight: bold;
  border-radius: 40px;
  padding: 10px 20px;
  border: none;
}

.row {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.bold {
  font-weight: bold;
}

.zoom {
  cursor: pointer;
  transform: scale(1);
  transition: all 1s ease;
}

.zoom:hover {
  transform: scale(1.05) perspective(1px);
}

@media (max-width: 768px) {
  .wrapper {
    padding: 0 20px;
  }
}
