/*-----------------------------------------------------------------------------
Theme: pendulow - place your collage
-----------------------------------------------------------------------------*/

/*Reset*/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  cursor: pointer;
}

a {
  text-decoration: none;
  color: inherit;
}

body {
  margin: 0;
  width: 100vw;
  height: 100vh;

  font-family: "spacemono", sans-serif;

  display: flex;
  align-items: center;
  justify-content: center;
  background: url(assets/bg.JPG);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

html {
  line-height: 1.15;
}

/* fonts */
@font-face {
  font-family: spacemono;
  src: url(assets/font/SpaceMono-Regular.ttf);
}

@font-face {
  font-family: spacemonoBold;
  src: url(assets/font/SpaceMono-Bold.ttf);
}

/* Classes */

.images {
  position: absolute;
  display: none;
  height: 20%;
}

.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 100;
  animation: fade-up 0.5s;
}

@keyframes fade-up {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0px) scale(1);
  }
}

.heading {
  font-family: "spacemonoBold";
  text-shadow: #f770bc 1px 0 10px;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.btn {
  font-family: inherit;
  padding: 0.8rem;
  margin-bottom: 0.5rem;
  background-color: #f770bc;
  border-color: #f770bc;
  border-radius: 20px;
}

.btn:hover {
  background-color: transparent;
  color: white;
  transition: all 1s ease;
}
