
html{
  min-height: 100%;
  height: 100%;
  overflow-x: hidden;
}
body {
  background: linear-gradient(45deg,#130c31,#40284c);
  margin: 0;
  padding: 0;
  font-family: Raleway, Helvetica Neue, Helvetica, Arial, sans-serif;
  font-weight: 400
}

/**********************************/
/******* 2.0 Content Styles *******/
/**********************************/
header {
  text-align: center;
}

header .logo {
  height: 85px;
  box-sizing: content-box;
}
.content {
  text-align: center;
  position: absolute;
  z-index: 11;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 260px;
}
.content h1 {
  color: #c38d7c;
  font-size: 4em;
  position: relative;
  font-weight: 400;
  margin: 0 1vw;
  font-family: 'Baloo Bhaijaan',serif;
}
.content h2 {
  color: #c38d7c;
  font-weight: 500;
  font-size: 1.7em;
  margin-bottom: 50px;
  font-family: 'Playfair Display',serif;
}
.content a {
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  border: 2px solid #ff524e;
  padding: 12px 19px;
  color: #ff524e;
  display: inline-block;
}
.content a:hover {
  opacity: 0.8;
}
#world {
  position: absolute;
  top: 0;
  left: 0;
  min-height: 100%;
  width: 100%;
  z-index: 9997;
  pointer-events: none;
  animation-name: fadein;
  animation-duration: 3s;
  animation-delay: 1s;
  animation-fill-mode: forwards;
  opacity: 0
}
@keyframes fadein {
  from {
      opacity: 0
  }
  to {
      opacity: 1
  }
}