@import url('https://fonts.googleapis.com/css2?family=Fruktur&display=swap');
* {
  font-family: "Fruktur", cursive;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  background: #010405;
}
section{
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
section::before{
  content: '';
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to top, #010405,transparent);
  z-index: 10000;
}
section img{
  position: absolute;
  top: 0;
  left: 0;
  max-width: 100%;
}
.sec{
  position: relative;
  padding: 100px;
  text-align: center;
}
.sec h2{
  font-size: 5rem;
  color: #ff9425;
  margin-bottom: 20px;
}
.sec p{
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.5rem;
  font-family: consolas;
}