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

body {
  font-family: Urbanist;
  overflow-x: hidden;
  min-height: 700px;
}

@font-face {
  font-family: Urbanist;
  src: url(../fonts/Urbanist-regular.ttf);
}
@font-face {
  font-family: Inter;
  src: url(../fonts/Inter-regular.ttf);
}
@font-face {
  font-family: Urbanist-bold;
  src: url(../fonts/Urbanist-semibold.ttf);
}
.section-2 {
  box-shadow: -5px -5px 20px 0 rgba(0, 0, 0, 0.2117647059);
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.section-2 .absolute {
  transform: translate(-50%, 0);
  background: rgba(0, 0, 0, 0.6980392157);
}
.section-2 .absolute a:hover {
  text-decoration: underline;
}

.section-1 {
  background: #09231d;
}
.section-1 h1 {
  font-family: Urbanist-bold;
}

#inputs input {
  font-family: Inter;
  color: white;
  font-size: 20px;
  padding: 10px 30px;
  background: rgba(0, 0, 0, 0.3058823529);
  border: 2px solid rgba(0, 0, 0, 0.1803921569);
}
#inputs input:hover {
  box-shadow: 8px 8px 24px 0px rgba(0, 0, 0, 0.1803921569);
}
#inputs input:focus {
  outline: none;
  box-shadow: 8px 8px 24px 0px rgba(0, 0, 0, 0.1803921569);
  border: 2px solid rgba(0, 0, 0, 0.1803921569);
}

.btn {
  font-size: 18px;
  background: rgba(0, 0, 0, 0.2509803922);
  cursor: pointer;
}

@keyframes sliding {
  0% {
    transform: translate(-70%, 0);
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translate(0, 0);
    opacity: 0;
  }
}
.added {
  opacity: 0;
}

.sliding-animation {
  animation: sliding 0.6s cubic-bezier(0.42, 0.54, 0.51, 0.98);
}