.cinzel-decorative-regular {
  font-family: "Cinzel Decorative", serif;
  font-weight: 400;
  font-style: normal;
}

.cinzel-decorative-bold {
  font-family: "Cinzel Decorative", serif;
  font-weight: 700;
  font-style: normal;
}

.cinzel-decorative-black {
  font-family: "Cinzel Decorative", serif;
  font-weight: 900;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  font-family: "Cinzel Decorative", serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #ebe6e2;
  background-image: url("./bg.jpg");
}

a {
  text-decoration: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

.content {
  position: fixed;
  top: 50%;
  left: 50%;
  width: calc(100% - 50px);
  transition: 1s all;
  opacity: 1;
  transform: translate(-50%, -50%);
  background-clip: text;
  color: transparent;
  text-shadow: none;
  background-image: url(./bg-content.jpg);
}

.content h1,
.content h2 {
  font-size: 38px;
  text-align: center;
  max-width: 342px;
  margin: 0 auto;
  line-height: 100%;
  letter-spacing: -2.56px;
}

@media (min-width: 640px) {
  .content h1,
  .content h2 {
    font-size: 64px;
    max-width: 620px;
  }
}

input,
select,
button,
textarea {
  appearance: none;
  border: none;
  background: transparent;
  outline: none;
  font-family: "Sans";
  font-size: 16px;
}

input[type="email"],
input[type="text"],
input[type="password"],
input[type="search"] {
  display: block;
  width: 100%;
}

a,
button,
label,
input[type="submit"],
input[type="checkbox"],
input[type="radio"] {
  cursor: pointer;
}

.content img {
  margin: 0 auto 20px;
  width: 50px;
}

@media (min-width: 640px) {
  .content img {
    width: 60px;
    margin: 0 auto 40px;
  }
}

.pulse {
	background: #a90000;
	box-shadow: 0 0 0 0 rgba(255, 82, 82, 1);
	animation: pulse-red 2s infinite;
	border-radius: 50%;
	transform: scale(1);
  width: 60px;
  margin: 0 auto 40px;
  background-image: url(./bg-content.jpg);
}

@keyframes pulse-red {
	0% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(255, 82, 82, 0.7);
	}
	
	70% {
		transform: scale(1);
		box-shadow: 0 0 0 10px rgba(255, 82, 82, 0);
	}
	
	100% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(255, 82, 82, 0);
	}
}

svg {
  width: 10px;
  height: 80px; 
  margin: -100% auto;
  position: absolute;
  .draw-arrow {  
    stroke-width: 5;
    stroke: #a90000; 
    fill: none;
    stroke-dasharray: 400;
    stroke-dashoffset: 400; 
    animation-duration: 5.5s;
    animation-fill-mode: forwards;
    animation-name: draw;
    &.tail-1 {
      animation-delay: 1s;
    }
    &.tail-2 {
      animation-delay: 1s;
    }
  }
}
@keyframes draw {
 to {
    stroke-dashoffset: 0;
  }
}