/*CyberSafe
----------------------------------------
1. General Style 
----------------------------------------
*/
body {
  background: #000;
  -webkit-font-smoothing: antialiased;
  font: 15px arial;
  color: #fff;

}

h1 {
  color: #ebebeb;
  text-align: center
}
/*
----------------------------------------
[1] Selection
----------------------------------------
*/
::selection {

  color: #058b8b
}

::-webkit-scrollbar {
  width: 10px;
  display: none
}
/*
----------------------------------------
[1] Misc Css
----------------------------------------
*/
@font-face {
  font-family: Azonix;
  src: url('font\Azonix.otf');
}
.hal {
  text-align: center;
  font-size: 100px;
  font-weight: 700;
  padding: 10px;
  font-family: 'Azonix', sans-serif;
  color:white
}

@media screen and (max-width:768px) {
  .hal{
    font-size: 70px;
  }}
.rotatingtext {
  text-align: center;
  font-size: 40px;
  font-weight: 500;
  background: -webkit-linear-gradient(25deg, #049faa, #03346c, #5920b4, #8c048c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent
}

body::after,
body::before {
  content: "";
  position: fixed;
  top: 0;
  bottom: 0;
  width: 8px;
  z-index: 9999;
  border-radius: 0 0 5px 5px
}

body::before {
  left: 0;
  background: linear-gradient(25deg,#000, #049faa, #03346c, #5920b4, #8c048c,#000);
  animation: lightEmittingBorder 4s infinite
}

body::after {
  right: 0;
  background: linear-gradient(25deg,#000, #049faa, #03346c, #5920b4, #8c048c,#000);
  animation: lightEmittingBorder 4s infinite
}

@keyframes lightEmittingBorder {
  0% {
      height: 0;
      opacity: 0
  }

  50% {
      height: 100%;
      opacity: 1
  }

  100% {
      height: 0;
      opacity: 0
  }
}
/*
----------------------------------------
Header Banner
----------------------------------------
*/
#header-banner {
  background-size: cover;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff
}

#header-banner h1 {
  font-size: 48px;
  font-weight: 700;
  border-bottom: 8px solid #2092b4
}

/*
----------------------------------------
Blog Section
----------------------------------------
*/

#blog-section {
  padding: 20px
}

#blog-content {
  margin-top: 30px
}

#blog-title {
  margin-bottom: 30px
}

#blog-title .flip-card-inner {
  width: auto;
  height: auto;
  text-align: center;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, .2);
  color: #fff;
  background: linear-gradient(to bottom, #48abe000, #5920b42d);
  border-radius: 10px;
  padding-bottom: 50px
}

.blog-post {
  background: 0 0;
  transition: .3s ease;
  color: #fff;
  padding: 20px;
  border-radius: 5px;
  position: relative;
  margin-top: 10px;
  margin-bottom: 10px;
  background-color: #050505;
  backdrop-filter: blur(5px)
}

.cover-image {
  position: relative;
  overflow: hidden;
  border-radius: 5px 5px 5px 5px
}

.cover-image img {
  width: 500px;
  height: auto;
  display: block;
  transition: transform .3s ease;
  filter: blur(10px)
}

.blog-content {
  margin-top: 0
}

.blog-post:hover .cover-image img {
  transform: scale(1.1);
  filter: blur(0)
}

.blog-post h3 {
  margin-top: 10px
}

.blog-post p {
  margin-bottom: 0
}

.blog-post a {
  color: #fff;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
  background-color: #5920b4;
  padding: 8px 12px;
  border-radius: 3px;
  transition: background-color .3s ease
}

.blog-post a:hover {
  background-color: #2f0a69
}




@media screen and (max-width:768px) {
  #sidenav {
      display: none
  }
}
/*
----------------------------------------
Unique Section
----------------------------------------
*/
.unique-section {
  background-color: #044d28;
  padding: 50px;
  text-align: center;
  color: #fff;
  border-radius: 5px
}

.section-title {
  font-size: 28px
}

.section-description {
  font-size: 18px;
  margin-bottom: 30px
}

.section-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #2f0a69;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color .5s ease
}

.section-button:hover {
  background-color: #036c4650
}
/*
----------------------------------------
Master Navigation Panel
----------------------------------------
*/
.menu-tab {
  top: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  text-align: center;
}

.menu-tab h1 {
  color: #ffffff9d;
  font-size: 35px;
  margin-left: 5px;
}

.menu-tab h1:hover {
  background: -webkit-linear-gradient(25deg, #049faa, #03346c, #5920b4, #8c048c);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

.menu-tab img {
  height: 10%;
  width: 5%
}

.menu-tab ul {
  display: inline-flex;
  list-style: none;
  transition: all .3s ease-in-out 0s
}

.menu-tab ul li {
  width: 120px;
  margin: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: .5s ease
}

.menu-tab ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 15px
}



@media screen and (max-width:768px) {
  .menu-tab {
      background-color: transparent;
      position: sticky;
      background-color: #000000bd;
      backdrop-filter: blur(50px);
      align-items: center;
      padding-left: 50px;
      border-radius: 0px 00px 10px 10px;
  }

  .menu-tab ul {
      flex-wrap: wrap;
      padding: 1px
  }

  .menu-tab ul li {
      text-align: center;
      margin: 1px
  }

  .menu-tab h1 {
      display: none
  }
}



.menu-tab ul li:hover {
  background-color: #5920b4;
  border-radius: 50px;
  box-shadow: 0 0 20px 15px #5ee2e2
}

/*
----------------------------------------
Floating Notification
----------------------------------------
*/

#notification {
  background-color: #8a20b4;
  color: #fff;
  padding: 10px;
  font-size: 18px;
  position: fixed;
  bottom: 20px;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, .5);
  display: none;
  animation: slide-in .5s ease-out;
  padding-right: 40px;
  margin-left: 20px;
  z-index: 999
}

#notification .close-button {
  position: absolute;
  padding-left: 20px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer
}

#notification .close-button:hover {
  color: #036c45;
  transition: .3s ease
}

@keyframes slide-in {
  0% {
      transform: translateY(100%)
  }

  100% {
      transform: translateY(0)
  }
}


/*
----------------------------------------
Footer
----------------------------------------
*/

.footer {
  background: linear-gradient(to right, #036c45, #0452aa, #2f0a69, #5920b4, #b420b4, #105072);
  background-size: 600% 600%;
  border-radius: 5px;
  margin: 0;
  animation: gradient 10s ease infinite;
  padding: 50px;
  text-size-adjust: auto;
  margin-top: 50px
}

@keyframes gradient {
  0% {
      background-position: 0 50%
  }

  50% {
      background-position: 100% 50%
  }

  100% {
      background-position: 0 50%
  }
}

.footericons {
  text-decoration: none;
  color: #fff;
  align-items: center;
  justify-content: center;
  text-align: center
}

.footericons i {
  text-decoration: none;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 25px;
  padding: 5px;
  margin: 5px;
  color: #fff;
  background: #0000005e;
  border-radius: 50%
}

.footericons i:hover {
  background: #ffffff5e;
  border-radius: 50%;
  color: #000
}

.mouseh {
  text-decoration: none;
  color: #fff;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 0;
  padding-bottom: 100px;
}

.mouseh i {
  transition: .3s ease;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 25px;
  padding: 5px;
  color: #fff;
  animation: float 4s infinite
}

.mouseh i:hover {
  color: #036c45
}

@keyframes float {
  0% {
      opacity: 0;
      color: #dcdcdc
  }

  50% {
      opacity: 1;
      transform: translateY(0);
      color: #f8f8ff
  }

  100% {
      transform: translateY(10px);
      opacity: 0;
      color: wheat
  }
}
/* 
Project
*/
.project-section {

  border-radius: 5px;
  align-items: center;
  text-align: center;
}

.grid-project {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 10px;
  margin: 20px;
  align-items: center;
  text-align: center;
}

.grid-project .project-item {
  background-color: #222627;
  border-radius: 5px;
  transition: .5s ease;
  height: 100px;
  width: 300px;
  align-items: center;
  text-align: center;
}
.grid-project  a{
  text-decoration: none;
  color:white
}
.grid-project .project-item:hover {
  background-color: #105072
}

.grid-project .project-item h3 {
  font-size: 24px;
  margin-bottom: 10px;
  text-align: center;
}

.grid-project .project-item p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 100px;
}


