*{
  margin: 0px;
  padding: 0px;
  font-family: sans-serif;
  box-sizing: border-box;
}
html{
  scroll-behavior: smooth;
}
body{
  max-width: 100%;
  background: url(../images/bg.jpg) no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.main{
  text-align: center;
}
.navbar{
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #202020;
  color: #fff;
}
.navbar-links ul{
  margin: 0;
  padding: 0;
  display: flex;
  font-size: 20px;
  padding: 10px;
}
.navbar-links li{
  list-style: none;
  transition: 0.5s all;
  border-radius: 10px;
}
.navbar-links li a{
  text-decoration: none;
  display: block;
  color: #fff;
  padding: 1rem;
  transition: 0.5s all;
}
nav ul li a:hover{
  color: #00FFFF;
  border-radius: 10px;
}
.toggle-button{
  position: absolute;
  top: 25px;
  right: 20px;
  display: none;
  flex-direction:column;
  justify-content:space-between;
  width: 30px;
  height: 21px;
}
.toggle-button .bar{
  height: 3px;
  width: 100%;
  background-color: #fff;
  border-radius: 10px;
}
.mainlogo{
  padding-left: 30px;
  margin: 10px;
}
.mainlogo img{
  width: 150px;
}
.account {
  margin-right: 50px;
  font-size: 23px;
  color: white;
  background-color: #808080;
  padding: 15px;
  width: 50px;
  height: 50px;
  border-radius: 15px;
  text-align: center;
  display: flex;
  align-items: center;
  transition: 0.5s all;
}
.account:hover{
  background-color: #00ffff;
  color: black;
}
.accmenu{
  display: none;
}
.accmenu a{
  transition: 0.5s all;
}
.accmenu a:hover{
  background-color: #00ffff;
  color: black;
}
.content{
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  background-color: #0009;
  padding: 20px;
  margin-bottom: 100px;
}
.content h1{
  text-align: center;
  font-size: 30px;
  color: #00ffff;
  margin-bottom: 50px;
}
.content h2{
  font-size: 20px;
  color:#00ffff;
  margin-bottom:20px;
  margin-top: 20px;
}
.content li{
  margin-top: 5px;
}
.info{
  font-size: 15px;
  color: white;
  margin-left: 20px;
}
.info a{
  text-decoration: none;
  color: #00ffff;
}
.date{
  font-size: 12px;
  color: #00ffff;
  font-style: italic;
  font-weight: bold;
  text-align:center;
  margin-top: 30px;
}
.fotter{
  padding: 10px;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #202020;
  color: #fff;
  text-align: center;
}
.logo{
  margin-top: 50px
}
.logo img{
  margin-bottom: 50px;
  width: 200px;
}
.fotter p:first-child{
  font-size: 20px;
}
.fotter a{
  color: #00FFFF;
  text-decoration: none;
}
.fotter p{
  font-size: 15px;
}
@media (max-width: 800px){
  .toggle-button{
    display: flex;
  }
  .navbar-links{
    display: none;
    width: 100%;
  }
  .navbar{
    flex-direction: column;
    align-items: flex-start;
  }
  .navbar-links ul{
    width: 100% ;
    flex-direction: column;
  }
  .navbar-links li{
    text-align:center;
  }
  .navbar-links li a{
    padding: .5rem 1rem;
  }
  .navbar-links.active{
    display: flex;
  }
  .account{
    display:none;
  }
  .accmenu{
    display: flex;
    text-align: center;
    width: 100% ;
    flex-direction: column;
    background-color: #808080;
  }
}
@media (max-height: 1200px){
  .fotter{
    padding: 10px;
    position: relative;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #202020;
    color: #fff;
    text-align: center;
  }
}
