@font-face {
  font-family: "bebasNeue";
  src: url("../fonts/bebas_neue/BebasNeue-Regular.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "bebasLight";
  src: url("../fonts/bebas_neue/BebasNeue-Light.otf") format("opentype");
  font-display: swap;
}

@font-face {
  font-family: "montserrat";
  src: url("../fonts/Montserrat/Montserrat-Regular.ttf") format("truetype");
  font-display: swap;
}

body {
  margin: 0;
  padding: 0;
}

.cta-1 {
  bottom: 0;
  padding: 10px 60px;
  box-sizing: border-box;
  font-family: bebasNeue;
  font-size: 20px;
  background-color: #01bf63;
  border: 3px solid #01bf63;
  outline: none;
  cursor: pointer;

  &:hover {
    transition: 300ms ease-out;
    background-color: transparent;
    color: #01bf63;
  }
  &:not(:hover) {
    transition: 300ms ease-in-out;
  }
}

img {
  user-select: none;
}

a {
  color: none;
  text-decoration: none;
}

#opacity {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100vw;
  height: 100vh;
  display: none;
}

.hide {
  display: none;
}
