@import url(//fonts.googleapis.com/css?family=Ubuntu:400,400i,700,700i|Droid+Sans:400,400i,700,700i);

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

body {
  font-family: Ubuntu;
  line-height: 1.5;
  background-color: #ffffff;
  color: #333333;
  font-size: 24px;
  height: 100vh;
  border-top: 5px solid #ff4141;
  border-left: 5px solid #ff4141;
  border-right: 5px solid #ff4141;
  border-bottom: 10px solid #ff4141;
}

div.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-around;
  transition: opacity 1s;
}

div.loader img {
  animation: rotate 1s infinite linear;
  max-width: 200px;
  max-height: 200px;
}

div.loader.hidden {
  opacity: 0;
  /*   z-index: -1; */
  pointer-events: none;
}

header {
  /*   position: fixed; */
  position: relative;
  overflow-hidden: 50px;
/*   padding: 20px; */
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  border-bottom: 2px solid #ff4141;
  transition: all 0.3s ease-in-out;
  color: #ff4141;
  font-family: Ubuntu;
  font-style: italic;
  font-weight: 700;
}

header:hover {
  background-color: #ff4141;
  color: #fff;
}

header:hover h1 {
  color: #ffffff;
  transform: rotate(4320deg);
/*   font-family: Ubuntu;
  font-style: italic; */
  font-weight: 700;
}

header nav a {
  text-decoration: none;
  color: #000000;
  margin-left: 20px;
  margin-right: 15px;
  font-size: 18px;
  z-index: 99999;
  transition: all 0.5s ease-in;
  padding-bottom: 2px;
}

header nav a:hover {
  /*   border-bottom: 1px solid #fff; */
  color: #ffffff;
  font-family: Ubuntu;
  font-style: italic;
}

header h1 {
  /* 	font-weight: 700; */
  font-family: Ubuntu;
  font-style: italic;
  font-size: 32px;
  max-width: 450px;
  padding-left: 20px;
  padding-right: 20px;
  transition: all 1.5s ease-in-out;
  z-index: 99999;
}

header h1:hover {
  color: #ffffff;
  transform: rotate(4320deg);
/*   font-family: Droid Sans; */
  font-style: italic;
  font-weight: 700;
}

.menu {
  background-color: #ff4141;
  /*   padding-left: 100px;
  padding-right: 65px;
  padding-top: 150px; */
  width: 350px;
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  z-index: 10;
  transform: translateX(100%);
  transition: hover 0.5s ease-in;
  transition: transform 0.5s ease;
}

.menu-open {
  transform: translateX(0);
}

.menu-nav {
  position: absolute;
  left: 100px;
  transform: translateY(-50%);
  top: 50%;
}

.menu a {
  margin-top: 30px;
  font-size: 32px;
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
  margin-right: 5px;
}

.menu .close {
  position: fixed;
  top: 0;
  right: 0;
  padding-right: 35px;
  padding-top: 35px;
  margin-top: 0px;
  transition: rotate 0.5s ease-in;
}

.menu .close:hover {
  color: #ffffff;
  font-family: Ubuntu;
  font-style: italic;
}

.menu-toggle {
  z-index: 11;
  position: fixed;
  top: 0;
  right: 0;
  margin: 25px;
  padding: 25px 25px 0px 0px;
  border: none;
  cursor: pointer;
}

section.body {
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 12px;
  max-width: 100%;
  height: 84vh;
}

.body div {
  margin-left: auto;
  margin-right: auto;
}

.body p {
  font-size: 46px;
  z-index: 2;
  transition: all 0.5s ease-in-out;
}

.body a:hover p {
  font-style: italic;
  color: #ff4141;
  /*   font-weight: 700; */
  z-index: 2;
  font-size: 66px;
  margin: 10px;
  font-weight: 700;
  font-family: Ubuntu;
  cursor: pointer;
}

.body img {
  opacity: 0;
  position: absolute;
  /*   top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); */
  transform: scale(6.5);
  transition: all 0.3s ease-in;
  /*   max-width: 200px; */
  border-radius: 10px;
}

.body img:hover {
  opacity: 0.4;
}

.line-1,
.line-2,
.line-3,
.line-4 {
  position: relative;
}

.social-links {
  /*   position: relative; */
  /*   background: none; */
  text-decoration: none;
/*   transition: all 0.3s ease-in; */
  transition: all 1s ease-in-out;
  margin-right: 25px;
  margin-top: 10px;
  color: #000000;
}

.social-links:hover {
  /*   border-bottom: 1px solid #ffffff; */
  color: #ffffff;
  font-family: Ubuntu;
/*   font-style: italic; */
  transform: rotate(4320deg);
}

footer {
  position: fixed;
  padding: 23px;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
/*   border-top: 2px solid #ff4141; */
  transition: all 0.3s ease-in-out;
}

/* footer:hover {
  background-color: #ff4141;
  color: #fff;
/*   padding: 23px; */
/* } */ 

footer div {
  padding-bottom: 10px;
}

footer div img {
  width: 30px;
  margin-left: 5px;
}

footer img:hover {
  width: 35px;
}

footer a {
  font-size: 16px;
  text-decoration: none;
  font-weight: 700;
  color: #000000;
  margin-bottom: 7px;
  margin-right: 5px;
  transition: all 0.1s ease-in;
}

footer .superhi a:hover {
  border-bottom: 1px solid #2727e6;
  color: #2727e6;
/*   font-style: italic; */
/*   font-family: Ubuntu; */
}

@media (max-width: 1060px) {
  header {
    background-color: #ff4141;
  }

  header h1 {
    color: #ffffff;
    font-family: Ubuntu;
    font-style: italic;
    font-weight: 700;
  }
  
  section.body {
    background-image: url(giphy-downsized.gif);
    background-size: cover;
    background-position: center;
    color: #ff4141;
    font-weight: 700;
    font-family: Ubuntu;
    font-style: italic;
  }

/*   footer {
    background-color: #ff4141;
  } */
  
  .superhi a {
    color: #ffffff;
  }
  
}

@media (max-width: 715px) {
.body p {
    font-size: 40px;
  }
}

@media (max-width: 600px) {
.body p {
    font-size: 36px;
  line-height: 2;
  }
}

@media (max-width: 540px) {
.body p {
    font-size: 34px;
  }
}

@media (max-width: 490px) {
.body p {
    font-size: 30px;
  }
}

@media (max-width: 460px) {
.body p {
   font-size: 30px;
  line-height: 1.7;
  }
}

@media (max-width: 430px) {

/*   body {
    border: none;
  } */
.body p {
   font-size: 28px;
  line-height: 1.5;
  }
  
}

@media (max-width: 410px) {
.body p {
   font-size: 26px;
  line-height: 1.5;
  }
}

@media (max-width: 380px) {
.body p {
   font-size: 24px;
  }
}

@media (max-width: 350px) {
.body p {
   font-size: 24px;
  }
}
