@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@600&display=swap");
:root {
  --yellow1: rgba(237, 205, 31, 1);
  --yellow2: rgb(179, 156, 26);
  --gray1: #3b3a3a;
  --black1: #1a1a1a;
  --font: "Montserrat", "sans-serif";
}

html {
  font-family: var(--font);
}

html, body {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

body {
  position: relative;
  margin-top: 70px;
  padding-bottom: 70px;
  min-height: calc(100vh - 140px);
}

a {
  text-decoration: none;
}

.centered {
  display: flex;
  justify-content: center;
  align-content: center;
  flex-direction: column;
}

.button {
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 3px;
  display: flex;
  gap: 13px;
  align-items: center;
  padding: 15px 25px;
  background-color: var(--gray1);
  color: var(--yellow1);
  width: fit-content;
  cursor: pointer;
  transition: background-color, color, outline, 0.4s;
}
.button i {
  font-size: 14px;
}
.button:hover {
  background-color: var(--yellow1);
  color: var(--gray1);
  outline: 1px solid var(--gray1);
}

div.socials {
  display: flex;
  height: 100%;
}
div.socials a {
  height: 100%;
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--yellow1);
  padding: 0 clamp(15px, 2vw, 30px);
  transition: background-color, color, 0.4s;
  cursor: pointer;
}
div.socials a h1 {
  font-size: 16px;
  margin: 0;
}
div.socials a i {
  font-size: 30px;
}
div.socials a:hover {
  background-color: var(--yellow1);
}
div.socials a:hover i {
  color: var(--gray1);
}
div.socials a:hover h1 {
  color: var(--gray1);
}

/*# sourceMappingURL=global.css.map */
