@import url('https://fonts.googleapis.com/css?family=Lato:400,700');
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;0,900;1,300;1,400;1,600;1,700;1,800;1,900&display=swap');

*, *:before, *:after {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
}
/*Cool Transition*/
html *,
html *:before,
html *:after {
  transition: 0.5s ease-in-out;
}

html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: 'Lato', sans-serif;
  margin: 0;
  background: url('./images/bgImage.jpg') no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  color: #0a0a0b;
  overflow: hidden;
}
/*Predefined Styles for Ul, a, and h1*/

ul, nav{
  list-style: none;
  padding: 0;
}
h1{
  font-size: 5em!important;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 800!important;
  color: #fff;
}

a {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.9;
}

a:hover {
  opacity: 1;
}

h2 {
  text-align: start;
  font-size: 2em!important;
  font-family: inherit;
  /*font-weight: 400;*/
  color: #fff;
  float: left;
}
/*Predefined Styles for Ul, a, and h1*/

/*Navbar Style Starts*/
.nav {
  height: 50px;
  width: 100%;
  position: relative;
}

.nav > .nav-header {
  display: inline;
}

.nav > .nav-header > .nav-title {
  display: inline-block;
  font-size: 22px;
  color: #fff;
  padding: 10px 10px 10px 10px;
}

.nav > .nav-btn {
  display: none;
}

.nav > .nav-links {
  display: inline;
  float: right;
  margin-left: auto;
  font-size: 18px;
}

.nav > .nav-links > a {
  display: inline-block;
  padding: 13px 10px 13px 10px;
  text-decoration: none;
  color: white;
}
.nav > #nav-check {
  display: none;
}
.nav-links .button{
  text-decoration: none;
  text-transform: uppercase;
  color: #fff;
  font-family: inherit;
  letter-spacing: 3px;
  font-size: 14px;
  padding: 15px 20px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.2, 1);

}
.nav-links .button:before, .nav-links .button:after {
  position: absolute;
  content: "";
  display: block;
}
.nav-links .button:before {
  top: -120px;
  left: 50px;
  z-index: -1;
  width: calc(100% + 140px);
  height: 100px;
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.2, 1);
  transform: skew(70deg);
  background: #ff3366;
}
.nav-links .button:after {
  top: 0;
  left: 0;
  z-index: -2;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  /*border: 1px solid #fff;*/
}
.nav-links .button:hover:before {
  left: -50px;
  top: -20px;
}
/*Navbar Style End*/
/*Text Animation*/

span.blink {
  border-right: .05em solid;
  animation: caret 1s steps(1) infinite;
}

@keyframes caret {
  50% {
    border-color: transparent;
  }
}
/*Text Animation*/

/*Making Responsive Styles*/
@media (max-width:800px) {
  .nav > .nav-btn {
    display: inline-block;
    position: absolute;
    right: 0px;
    top: 0px;
  }
  .nav > .nav-btn > label {
    display: inline-block;
    width: 50px;
    height: 50px;
    padding: 13px;
  }
  .nav > .nav-btn > label > span {
    display: block;
    width: 25px;
    height: 10px;
    border-top: 2px solid #eee;
  }
.nav > .nav-links {
    position: absolute;
    display: block;
    width: 100%;
    /*background-color: #333;*/
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    background-color: white;
    height: 0px;
    transition: all 0.3s ease-in;
    overflow-y: hidden;
    top: 50px;
    left: 0px;
  }
  .nav > .nav-links > a {
    display: block;
    width: 100%;
  }
  .nav > #nav-check:not(:checked) ~ .nav-links {
    height: 0px;
  }
  .nav > #nav-check:checked ~ .nav-links {
    /*height: calc(100vh - 50px);*/
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    margin-top: 20px;
    height: 170px;
    overflow-y: auto;
  }
  .nav > #nav-check:checked ~ .nav-links a{
       color: black!important;
  }
}

a.btn {
  color: #fff;
  padding: 10px;
  border: 1px solid rgba(255,255,255,0.5);
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
}

a.btn:hover {
  background: #d73851;
  border: 1px solid #d73851;
  color: #fff;
}

.cover  {
  height: 100vh;
  width: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,0.05)), to(rgba(0,0,0,0)));
  background: -webkit-linear-gradient(top, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0) 100%);
  background: linear-gradient(to bottom, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0) 100%);
  padding: 20px 50px;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: start;
}

#madeby {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 25px 60px;
  color: #fff;
}
#madeby a{
  color: #ffff;
  text-decoration: none;
  font-size: inherit;
  font-weight: 700;
}

/*Responsiveness to text at bottom right*/

@media all and (max-width:800px) {
  .cover {
    padding: 20px;
  }

  #madeby {
    padding: 30px 20px;
  }
}
@media all and (max-width:535px) {
  h2{
    font-size: 1em!important;
  }
  h1{
    font-size: 3.5em!important;
    font-weight: 700!important;
  }   
}
@media all and (max-height:535px) {
  h2{
    font-size: 1rem!important;
  }
  h1{
    font-size: 40px!important;
    font-weight: 700!important;
  }
  #madeby span{
    font-size: 12px!important;
  }   
}