@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Gloria+Hallelujah");
@import url("https://fonts.googleapis.com/css?family=Coming+Soon");
* {
  padding: 0;
  margin: 0;
}

body {
  font-family: 'Gloria Hallelujah', cursive;
}

section {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-image: url("./imges/background.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  font-family: 'Open Sans', sans-serif;
}

.overaly {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #232323;
  opacity: .6;
}

.menu {
  width: 75%;
  margin: 0 auto;
}

.tips {
  position: relative;
  width: 80vw;
  height: 80vh;
  margin: 5vh auto;
  color: #fff;
  border-radius: 5px;
  border: 2px solid #FFF;
}
.tips--content {
  position: absolute;
  width: 300px;
  min-width: 300px;
  height: 600px;
  min-height: 600px;
  left: 50%;
  top: 35%;
  margin-left: -120px;
  margin-top: -120px;
}
.tips h1 {
  font-size: 5.1rem;
  letter-spacing: .2rem;
  font-family: 'Gloria Hallelujah', cursive;
}
.tips h2 {
  position: absolute;
  left: -122px;
  top: 0;
  -ms-transform: translate(100px, 100px) rotate(-90deg);
  -webkit-transform: translate(100px, 100px) rotate(-90deg) rotate(-20deg);
  transform: translate(100px, 100px) rotate(-90deg);
  color: #232323;
  font-size: 1.1rem;
  width: 100px;
  height: 60px;
  background: #FFF;
  font-family: 'Coming Soon', cursive;
}
.tips p {
  font-family: 'Gloria Hallelujah', cursive;
  font-size: 1.2rem;
}

button {
  border: 4px solid #FFF;
  border-radius: 50px;
  border: none;
  color: #58519F;
  text-align: center;
  padding: 15px 20px;
  width: 200px;
  transition: all 0.5s;
  cursor: pointer;
  margin: 5px;
}

.button-one {
  display: inline-block;
}
.button-one span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
  font-size: 1.2rem;
  font-family: 'Gloria Hallelujah', cursive;
}
.button-one span:after {
  content: '»';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}
.button-one:hover {
  background: #e96043;
}
.button-one:hover span {
  padding-right: 25px;
}
.button-one:hover span:after {
  opacity: 1;
  right: 0;
}