@import url('https://fonts.googleapis.com/css?family=Montserrat:200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i');
@import url('https://fonts.googleapis.com/css?family=Josefin+Sans:100,100i,300,300i,400,400i,600,600i,700,700i');
@import 'https://fonts.googleapis.com/css?family=Just+Another+Hand';
@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700');


* {
  margin: 0%;
  padding: 0%;
  box-sizing: border-box;
}

body {
  font-size: 1vw;
  line-height: 1.6;
  width: 100vw;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #000000;
}

.container {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.header {
  width: 100vw;
  position: fixed;
  z-index: 2;
  height: 8vh;
  margin: 0px;
  display: grid;
  grid-template-columns: auto auto;
  justify-content: space-around;
  align-items: center;
  list-style: none;
  background-attachment: fixed;
  background: #333333;
  box-shadow: inset 0px -1px 5px rgb(255, 255, 255);

}


.menu-list {
  width: 28vw;
  display: grid;
  grid-template-columns: auto auto auto auto;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}

.menu-list a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #ffffff;
  font-size: .9vw;
  font-weight: 100;
  padding-left: 1vw;
  padding-right: 1vw;
  padding-top:.2vh;
  padding-bottom:.2vh;
  border-radius: 100px;
  background: #333333;
  box-shadow: inset 0px 0px 5px rgb(255, 255, 255, .50),
    inset 0px -0px 5px rgb(255, 255, 255, .50);
}

.menu-list a:hover {
  box-shadow: inset 0px 0px 5px rgba(0, 0, 0, 0.5),
    inset 0px -0px 5px rgba(0, 0, 0, 0.5);


}

.logo-image {
  width: 10vw;
}


/* End Header */

@keyframes spin {

  0%,
  15% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* endanimation */

#img {
  width: 100%;
  height: 100%;
  background-image: url(bg.jpg);
  background-size: cover;
}

#newimg {
  position: absolute;
  width: 20vw;
  left: 65vw;
  top: 15vh;
}


#txt-container {
  position: absolute;
  width: 100%;
  top: 55vh;
  left: 25vw;
  text-align: center;
  display: grid;
  grid-template-rows: auto auto auto;
  justify-content: center;
  align-items: center;
}

#txt-container h1 {
  line-height: .7vh;
  font-size: 4vw;
  color: #ffffff;
}

#txt-container span {
  display: inline-block;

  animation: flip 2s infinite;
  animation-delay: calc(.2s * var(--i))
}

@keyframes flip {

  0%,
  80% {
    transform: rotateY(360deg);
  }
}

#txt-container p {
  margin-top: 7%;
  letter-spacing: 2px;
  font-size: 2vw;
  font-weight: 100;
  color: rgb(196, 196, 196);
}

#socialmedia {
  margin-top: 10vh;
  list-style: none;
  display: grid;
  grid-template-columns: auto auto auto auto;
  justify-content: space-evenly;
  align-items: center;
  font-size: 2vw;
}


.fa {
  color: rgb(196, 196, 196);
  text-decoration: none;
}


@media only screen and (max-width: 1024px) {

  .header {
    height: 10vh;

  }


  .menu-list {
    width: 35vw;
  }

  .menu-list a {
    font-size: 1.3vw;

  }

  #socialmedia {
    font-size: 3vw;
  }

  .logo-image {
    width: 15vw;
  }

  #txt-container {
    width: 50vw;
    left: 50%;
    top: 45vh;
  }

  #img {
    margin-top: 4vh;
  }

}

@media only screen and (max-width: 912px) {

  .header {
    height: 8vh;

  }


  .menu-list {
    width: 45vw;
  }

  .menu-list a {
    font-size: 2vw;

  }

  #socialmedia {
    font-size: 3vw;
  }

  .logo-image {
    width: 25vw;
  }

  #newimg {
    width: 30vw;
    left: 40vw;
    top: 65vh;
  }

  #txt-container {
    width: 80vw;
    left: 10vw;
    top: 85vh;
  }

  #txt-container h1 {
    line-height: .4vw;
    font-size: 6vw;
  }

  #txt-container p {
    font-size: 3vw;
  }

  #socialmedia {
    font-size: 3vw;
    margin-top: 3.5vh;
  }

  #img {
    margin-top: 1vh;
    background-image: url(bg-1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
  }

}

@media only screen and (max-width: 768px) {

  .header {
    height: 8vh;
    display: grid;
    justify-content: center;
    align-items: center;
  }

  #img {
    margin-top: 1vh;
    background-image: url(bg-2.png);
    background-size: cover;
  }


  .menu-list {
    display: none;
  }

  #socialmedia {
    font-size: 6vw;
  }

  .logo-image {
    width: 30vw;
  }

  #newimg {
    width: 40vw;
    left: 35vw;
    top: 50vh;
  }

  #txt-container {
    margin-left: -10vw;
    margin-top: -7vh;
    width: 100vw;
  }

  #txt-container h1 {
    line-height: .5vw;
    font-size: 6.5vw;
  }

  #txt-container p {
    font-size: 3.2vw;
  }

  #socialmedia {
    font-size: 4vw;
    margin-top: 5vh;
  }

}

@media only screen and (max-width: 500px) {

  .header {
    height: 10vh;
    display: grid;
    justify-content: center;
    align-items: center;
  }

  #img {
    margin-top: 5vh;
    background-image: url(bg-1.jpg);
    background-size: cover;
  }


  .menu-list {
    display: none;
  }

  #socialmedia {
    font-size: 6vw;
  }

  .logo-image {
    width: 40vw;
  }

  #newimg {
    width: 40vw;
    left: 30vw;
    top: 59vh;
  }

  #txt-container {
    margin-left: -11vw;
    margin-top: -5vh;
    width: 100vw;
  }

  #txt-container h1 {
    line-height: 2px;
    font-size: 8vw;
  }

  #txt-container p {
    font-size: 4vw;
  }

  #socialmedia {
    font-size: 6vw;
  }

}