@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: url('img/logo_deepaiug_mani_escher.jpg') no-repeat center center fixed;
  background-size: contain;
  background-color: rgb(0, 0, 0);
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #188aff;
  opacity: 0.2;
  /* Lowered opacity */
  z-index: -1;
}

ul {
  position: relative;
  margin: 0;
  padding: 20px;
  width: 300px;
  background: rgba(255, 255, 255, 0.1);
  /* Lowered opacity */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5),
    inset 0 0 15px rgba(255, 255, 255, 0.5);
  z-index: 1;
}

ul li {
  position: relative;
  list-style: none;
}

ul li:before {
  content: '';
  position: absolute;
  top: 26px;
  right: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e0e0e0;
  transition: 0.5s ease-in-out;
}

ul li:hover:before {
  background: #b618ff;
}

ul li a {
  text-decoration: none;
  display: flex;
}

ul li a .icon {
  width: 60px;
  height: 40px;
  text-align: center;
  overflow: hidden;
  margin: 10px;
}

ul li a .icon .fa {
  width: 100%;
  height: 100%;
  line-height: 40px;
  font-size: 34px;
  transition: 0.5s ease-in-out;
  color: #333;
}

ul li a .icon .fa:last-child {
  color: #b618ff;
}

ul li a:hover .icon .fa {
  transform: translateY(-100%);
}

ul li a .name {
  position: relative;
  top: 20px;
  height: 20px;
  width: 100%;
  display: block;
  overflow: hidden;
}

ul li a .name span {
  display: block;
  position: relative;
  color: #333;
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
  transition: 0.5s ease-in-out;
}

ul li a .name span:before {
  content: attr(data-text);
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  color: #b618ff;
}

ul li a:hover .name span {
  transform: translateY(20px);
}

.content {
  width: 80%;
  max-width: 800px;
  background: rgba(255, 255, 255, 0.);
  /* Lowered opacity */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin: 20px;
}

.content h1 {
  color: #673AB7;
  margin-bottom: 20px;
}

.content p {
  color: #fdf6f6;
  line-height: 1.6;
  margin-bottom: 15px;
}

.home-btn {
  position: fixed;
  top: 20px;
  left: 20px;
  background: rgba(103, 58, 183, 0.8);
  backdrop-filter: blur(5px);
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}

.home-btn:hover {
  background: #5E35B1;
  transform: translateY(-2px);
}