body {
    background-color: #000;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
 }

 nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
    background: #000;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
 }

 .logo {
    display: flex;
    margin-top: 20px;
    align-items: center;
 }

 .logo img {
    height: 75px;
    margin-right: 10px;
 }

 .logo h3 {
    margin: 0;
    font-family: 'Oswald', sans-serif;
    cursor: pointer;
    font-size: 30px;
    padding: 5px;
    text-transform: uppercase;
    color: #00ffff;
    position: relative;
 }

 .logo h3:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: #00ffff;
    bottom: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1s ease;
 }

 .logo h3:hover:before {
    transform: scaleX(1);
 }

 .logo h3:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    padding: 5px;
    background: #00ffff;
    bottom: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 1s ease;
 }

 .logo h3:hover {
    animation: glowing 1s infinite;
 }

 @keyframes glowing {
    0% {
       text-shadow: 0 0 5px #00ffff;
    }
    50% {
       text-shadow: 0 0 20px #00ffff, 0 0 40px #00ffff;
    }
    100% {
       text-shadow: 0 0 5px #00ffff;
    }
 }

 .menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
 }

 .menu li {
    margin-left: 20px;
 }

 .menu li a {
    color: #fff;
    text-decoration: none;
    top:-80%;
    padding: 10px;
    position: relative;
    transition: all 0.3s ease;
 }

 .menu li a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -5px;
    left: 0;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
 }

 .menu li a:hover:before {
    transform: scaleX(1);
    transform-origin: left;
 }

 .menu li a:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    top: -5px;
    left: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
 }

 .menu li a:hover:after {
    transform: scaleX(1);
    transform-origin: right;
 }

 .menu li a:before,
 .menu li a:after {
    visibility: hidden;
    opacity: 0;
    background: currentColor;
 }

 .menu li a:hover:before,
 .menu li a:hover:after {
    visibility: visible;
    opacity: 1;
 }

 /* Glow effect */
 @keyframes glowing {
    0% {
       box-shadow: 0 0 5px #fff;
    }
    50% {
       box-shadow: 0 0 20px currentColor, 0 0 40px currentColor;
    }
    100% {
       box-shadow: 0 0 5px #fff;
    }
 }

 .menu li a:hover {
    animation: glowing 1s infinite;
 }

 .menu li:first-child a:hover {
    color: #00ffff;
 }

 .menu li:nth-child(2) a:hover {
    color: #ff00ff;
 }

 .menu li:nth-child(3) a:hover {
    color: #ffff00;
 }

 .menu li:nth-child(4) a:hover {
    color: #00ff00;
 }

 .menu li:nth-child(5) a:hover {
    color: #ff0000;
 }

 body {
   font-family: 'Open Sans', sans-serif;
   margin: 0;
   padding: 0;
   background-color: #000;
}
.container {
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   align-items: center;
   min-height: 100vh;
}
.row {
   display: inline-block;
   justify-content: center;
   margin-bottom: 20px;
}
.category {
   width: 500px;
   height: 300px;
   background-color: #111;
   border-radius: 10px;
   margin: 10px;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   transition: transform 0.3s ease;
}
.category:hover {
   transform: translateY(-5px);
}
.category i {
   font-size: 48px;
   color: #00ffff;
   margin-bottom: 10px;
}
.category p {
   font-size: 16px;
   color: #fff;
   margin-bottom: 0;
   margin-top: -1%;
}
.name{
   display: flex;
   align-items: center;
}
.name i {
   margin-right: 5px;
}
.buttons-container {
   display: flex;
   flex-wrap: wrap;
   justify-content: space-between;
   align-items: center;
   margin-top: 20px;
}

.buttons-container button {
   padding: 10px 15px;
   margin-bottom: 10px;
   background-color: #00ffff;
   color: #000;
   border: none;
   width: calc(50% - 10px); /* Adjust the width to leave some spacing between buttons */
   border-radius: 5px;
   cursor: pointer;
   transition: background-color 0.3s ease;
}

.buttons-container button:hover {
   background-color: #00cccc;
}

.buttons input,
.buttons select {
  padding: 10px;
  margin-bottom: 10px;
  background-color: #222;
  color: #fff;
  border: none;
  border-radius: 5px;
  width: 200px;
  font-size: 16px;
  font-family: 'Open Sans', sans-serif;
}

.buttons select option {
  background-color: #111;
  color: #fff;
}

.select-buttons {
  display: flex;
  justify-content: flex-start;
}

.buttons button {
  padding: 10px 20px;
  margin-right: 10px;
  background-color: #00ffff;
  color: #000;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  font-family: 'Open Sans', sans-serif;
  transition: background-color 0.3s ease;
}
.buttons .button2{
   text-align: center;
   margin-right: 5%;
}

.buttons button:hover {
  background-color: #00cccc;
}

.section-text {
  font-size: 24px;
  color: #fff;
  margin-bottom: 10px;
  font-family: 'Oswald', sans-serif;
}

.panic-key-container {
   display: flex;
   flex-direction: column;
   align-items: center;
 }
 
 .panic-key-container input {
   padding: 10px;
   margin-bottom: 10px;
   background-color: #222;
   color: #fff;
   border: none;
   border-radius: 5px;
   width: 400px;
   font-size: 16px;
   font-family: 'Open Sans', sans-serif;
 }