@font-face {
  font-family: JakeHandwriting;
  src: url('../Bi_polarHandwriting-Regular.ttf');
}

@font-face {
  font-family: Cactus;
  src: url('../Cactus\ Jack.ttf');
}

:root{
  --theme-color :#2bf64f;
  --link-color :#f2e2ce;
}

body {
  font-family: 'JakeHandwriting';
  color: #272829;
}

a {
  color: #0563bb;
  text-decoration: none;
}

a:hover {
  color: #067ded;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #2bf64f;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background-size: cover;
  position: relative;
  color: var(--theme-color);

}

.kanye{
  background: url("../img/hero-bg.jpg") top right no-repeat;
}

.travis{
  background: url("../img/highest.png") top right no-repeat;
}

@media (min-width: 992px) {
  #hero {
    padding-left: 160px;
  }
}

#hero h1 {
  margin: 0;
  font-size: 64px;
  line-height: 56px;
}

#hero h1 span {
  cursor: pointer;
}

#hero h1 a{
  margin: 0;
  font-size: 64px;
  line-height: 56px;
  color: var(--link-color);
  transition: 0.3s;
}

#hero h1 a:hover{
  font-size: 72px;
  color: var(--theme-color);
}

#hero p {
  margin: 15px 0 0 0;
  font-size: 26px;
}

#hero .social-links {
  margin-top: 30px;
}

#hero .social-links a {
  font-size: 20px;
  display: inline-block;
  color: var(--link-color);
  line-height: 1;
  margin-right: 18px;
  transition: 0.3s;
}

#hero .social-links a:hover {
  color: var(--theme-color);
  font-size: 36px;
}

@media (max-width: 992px) {
  #hero {
    text-align: center;
  }

  #hero h1 {
    font-size: 32px;
    line-height: 36px;
  }

  #hero p {
    margin-top: 10px;
    font-size: 20px;
    line-height: 24px;
  }

  #hero h1 a{
    font-size: 32px;
    line-height: 36px;
    transition: 0.3s;
  }
  
  #hero h1 a:hover{
    font-size: 50px;
    color: var(--theme-color);
  }
}
