* {
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: "brezel";
  src: url(/font/BrezelGrotesk-Bold.otf) format("truetype-variations");
}

body {
  /* background-color: rgba(241, 38, 69, 0.604); */
  overflow: hidden;
}

#mycanvas {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  /* z-index: -10000; */
}
.logo {
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

#logo {
  width: 70vw;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.text {
  padding-top: 40px;
  /* max-width: 500px; */
  margin: 0 auto;
  width: 120vw;
}

p {
  font-family: "brezel";
  font-size: 23px;
}

/* .marquee {
  -moz-animation: marquee 10s linear infinite;
  -webkit-animation: marquee 10s linear infinite;
  animation: marquee 10s linear infinite;
}
@-moz-keyframes marquee {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@-webkit-keyframes marquee {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes marquee {
  0% {
    -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  100% {
    -moz-transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
} */

.marquee {
  width: 100vw;
  margin-top: 20px;
  position: absolute;
  overflow: hidden !important;
  --offset: 20vw;
  --move-initial: calc(-25% + var(--offset));
  --move-final: calc(-50% + var(--offset));
}

.marquee__inner {
  width: fit-content;
  display: flex;
  position: relative;
  transform: translate3d(var(--move-initial), 0, 0);
  animation: marquee 17s linear infinite;
  /* animation-play-state: paused; */
}

.marquee span {
  font-size: 24px;
  padding: 0 2vw;
  width: 100%;
  white-space: nowrap;
  font-family: "brezel";
  font-size: 23px;
}

.marquee:hover .marquee__inner {
  animation-play-state: paused;
}

@keyframes marquee {
  0% {
    transform: translate3d(var(--move-initial), 0, 0);
  }

  100% {
    transform: translate3d(var(--move-final), 0, 0);
  }
}

.social-media {
  font-size: 50px;
  position: absolute;
  z-index: 200000;
}

.social-media i {
  transition: 0.3s ease;
}

.social-media i:hover {
  font-size: 70px;
  /* color: rgb(14, 169, 0); */
}

a {
  text-decoration: none;
  color: rgb(240, 13, 149);
}

/* .insta {
  left: 40vw;
}

.facebook {
  right: 40vw;
} */

.newsletter {
  position: absolute;
  bottom: 30px;
  background-color: rgb(240, 13, 149);
  width: 618px;
  height: 50px;
  border-radius: 50px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 40000;
}
form {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

input {
  background-color: rgb(240, 13, 149);
  border: none;
  color: white;
  opacity: 1;
  height: 40px;
  width: 350px;
  margin-left: 20px;
  font-size: 20px;
  font-family: "brezel";
}
input::placeholder {
  color: white;
  opacity: 1;
}
input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: white;
  opacity: 1;
}
input::-moz-placeholder {
  /* Firefox 19+ */
  color: white;
  opacity: 1;
}
input:-ms-input-placeholder {
  /* IE 10+ */
  color: white;
  opacity: 1;
}
input:-moz-placeholder {
  /* Firefox 18- */
  color: white;
  opacity: 1;
}
input:focus {
  outline: none;
}
button {
  margin-right: 10px;
  width: 250px;
  height: 35px;
  border-radius: 50px;
  border: none;
  font-size: 20px;
  cursor: pointer;
  background: white;
  transition: 0.3s ease;
  font-family: "brezel";
}

button:hover {
  background-color: rgb(0, 169, 109);
  color: white;
}

@media screen and (max-width: 643px) {
  #logo {
    width: 90vw;
  }
  form {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  .newsletter {
    width: 80vw;
    height: 80px;
  }
  input {
    margin-top: 10px;
    text-align: center;
    width: auto;
    height: 20px;
  }
  button {
    margin-top: 5px;
    margin-bottom: 7px;
    height: 60px;
    font-size: 18px;
    text-align: center;
    margin-right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
    height: 35px;
  }

  .marquee span {
    font-size: 17px;
  }
}
