styles.scss 1.06 KB
@import "scss/styles-bootstrap.scss";
@import "scss/typography.scss";
@import "scss/height-width.scss";
@import "scss/animations.scss";
@import "scss/icons.scss";
@import "scss/scroll.scss";
@import "node_modules/bootstrap/scss/_variables.scss";

@font-face {
  font-family: "Gotham";
  font-style: normal;
  font-weight: normal;
  src: url("assets/fonts/gotham-medium.woff") format("woff");
}

html,
body {
  min-height: 100vh;
  max-height: 100vh;
  height: 100vh;
  font-family: "Gotham";
  overflow: hidden;
  user-select: none;
}

.btn-effect {
  transition: all 0.3s;
  &:hover {
    cursor: pointer;
    opacity: 0.7;
  }
  &:active {
    transform: scale(1.02);
  }
}

.cursor-pointer {
  cursor: pointer;
}

p {
  margin: 0 !important;
}

.img-in-top {
  position: absolute;
  top: -35px;
  left: 50%;
  height: 70px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.rotate-45 {
  transform: rotate(45deg);
}

.rotate-90 {
  transform: rotate(90deg);
}

.rotate-90-neg {
  transform: rotate(-90deg);
}

.rotate-180-neg {
  transform: rotate(-180deg);
}