*{
	margin: 0px;
	font-family: sans-serif;
	outline: 0px;
  	box-sizing: borsder-box;
}

.hero {
	width: 100%;
	height: 100%;
	background-image: url(https://media.discordapp.net/attachments/778709189664047149/780130436412080188/background.png);
	background-size: cover;
	background-position: center;
	position: relative;
	overflow: hidden;
	margin: 0;
  	padding: 0;
  	display: table;
  	vertical-align: middle;
}
.logo {
	width: 100px;
	cursor: pointer;
	padding-top: 30px;
}

.navbar {
	width: 85%;
	height: 15%;
	margin: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

button{
	color: white;
	padding: 10px 25px;
	background: transparent;
	border: 1px solid white;
	border-radius: 20px;
	outline: none;
	cursor: pointer;
	font-size: 15px;
}
button:hover, button :active {
	background-color:#528fcc;
	transition: .3s;
}
.content{
	color: white;
	position: absolute;
	top: 50%;
	left: 8%;
	transform: translateY(-50%);
	z-index: 2;
}

h2 {
	font-size: 85px;
	margin: 10px 0 30px;
	line-height: 80px;
	color: white;
	-webkit-text-stroke: 1px #00545d;
}

h1 {
	font-size: 20px;
	color: transparent;
	font-family: sans-serif;
	-webkit-text-stroke: 0.5px black;
}

.side-bar{
	width: 50px;
	height: 100vh;
	background: linear-gradient(#00545d, #000729);
	position: absolute;
	right: 0;
	top: 0;
}
.menu {
	display: block;
	width: 25px;
	margin: 40px auto 0;
	cursor: pointer;
}
.social-links img, useful-links img{
	width: 35px;
	margin: 20px auto 0;
	cursor: pointer;
}
.social-links{
	width: 50px;
	text-align: center;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
.bubbles img{
	width: 50px;
	animation: bubble 7s linear infinite;
}
.bubbles {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-around;
	position: absolute;
	bottom: -70px;
}
@keyframes bubble {
	0%{
		transform: translateY(0);
		opacity: 0;
	}
	50%{
		opacity: 1;
	}
	70%{
		opacity: 1;
	}
	100%{
		transform: translateY(-80vh);
		opacity: 0;
	}
}

.bubbles img:nth-child(1) {
	animation-delay: 2s ;
	width: 35px;
}
.bubbles img:nth-child(2) {
	animation-delay: 1s;
	width: 25px;
}
.bubbles img:nth-child(3) {
	animation-delay: 3s;
	width: 25px;
}
.bubbles img:nth-child(4) {
	animation-delay: 4.5s ;
	width: 25px;
}
.bubbles img:nth-child(5) {
	animation-delay: 4s;
}

.bubbles img:nth-child(6) {
	animation-delay: 6s;
}
.bubbles img:nth-child(7) {
	animation-delay: 7s;
	width: 35px;
}

.menu {
  background-color: #071145;
  height: 75px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #fff;
  margin: 0px;
}
.logito {
  color: #071145;
  font-size: 35px;
  font-family: "Raleway", sans-serif;
  padding: 0 80px;
  font-weight: bold;
}
.menu_items {
  display: flex;
  list-style: none;
  margin-right: 30px;
}
 .menu_items li {
   border-radius: 3px;
   margin: 0 5px;
 }
.menu_items li a {
  padding: 7px 13px;
  text-decoration: none;
  font-size: 16px;
  display: block;
  text-transform: uppercase;
  color: white;
  font-family: sans-serif;
  font-weight: bolder;
}

.menu_items li:hover, li :active {
  background-color: #5dc1b9 ;
  transition: .3s;
}
.btn_menu {
  margin-right: 30px;
  font-size: 25px;
  cursor: pointer;
  display: none;
}

ul.show {
  top: 65px;
}
@media screen and (max-width: 952px){
  .logito{
    font-size: 30px;
    padding-left: 35px;
  }
  .menu_items li a{
    font-size: 16px;

  }
}

@media screen and (max-width: 858px){
  .menu{
height: 65px;
  }
  .btn_menu{
    display: inline-flex;
  }
  .menu_items {
    position: fixed;
    width: 100vw;
    height: calc(100%-65px);
    background:#414141;
    top: -100vh;
    text-align: center;
    transition: all .4s;
    flex-direction: column;
  }
  .menu_items li {
    margin: 30px 0 0 0;
    line-height: 30px;
  }
  .menu_items li:hover {
    background: none;
  }
  .menu_items li a {
    font-size: 20px;
    color: white;
    font-weight: bold;
  }
  .menu_items li a:hover {
    color: red;
  }
  .logito {
    font-size: 25px;
    padding-left: 35px;
  }
}

@media screen and (max-width: 858px) and (orientation: landscape){
  .menu_items li {
    margin: 5px 0 0 0;
  }
  .menu_items {
    overflow: scroll;
    height: calc(100% - 65px);
  }
}

#footer {
  background: #000729;
  padding: 30px 0;
  color: #fff;
}

#footer .copyright {
  text-align: center;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
}