

 

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.language-switch {
            position: fixed;
            top: 10px;
            right: 10px;
            background-color: #00ffc8;
            color: black;
            padding: 8px 12px;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            z-index: 1000;
            transition: background-color 0.3s ease;
        }
        .language-switch:hover {
            background-color: #00e6b4;
        }
        .fade {
            transition: opacity 0.5s ease;
            opacity: 1;
        }
        .fade.out {
            opacity: 0;
        }
body {
  margin-top: 100px;
  background-image: url('pexels-pixabay-355747.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right;
  background-attachment: fixed;
  background-color: black;
  height: auto;
}




header {
    text-align: center;
    margin-bottom: 20px;
	color: white;
	 max-width: 100%;
}


h3 {
	padding-top:20px;
}


h1 {
  
color: white;
  font-size: 36px;
  text-align: center;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); /* subtle shadow */

}

.cyan-text {
  color: #00ffc8; /* cyan-fluo */
}



}

section {
    padding: 0px;
	margin: 5px 0;
    margin-bottom: 2px;
    border-radius: 8px;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

section h2 {
    color:  #00ffc8;
	text-align: center;
	margin: 1px 0;
}
h2 {
	color:  #888888;
	text-align: center;
}
	
ul {
    list-style-type: square;
    padding-left: 0px;
}


footer {
  bottom: 0;
  background-color:black;
  left: 0;
  width: 100%;
  text-align: center;
  padding: 0px 0;
  z-index: 1000;
  color:  #888888;
  text-align: center;
}

.glass-panel {
    background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);          /* blur behind the panel */
  -webkit-backdrop-filter: blur(10px);  /* Safari support */

  border-radius: 2%;
  padding: 30px;
  max-width: 600px;
  margin: 20px auto;
  color: #fff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}
.header-glass-panel {
  
  position: fixed;
  width:100%;
  top: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  border-bottom: 18px solid #00ffc8;
  padding: 1px;
  color: white;
  z-index: 999;
  margin: 0px 0;
  max-width: 100%;
}

.fixed-avatar {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 999;
}

.fixed-avatar img {
  width: 100px;
  height:100px;
  border-radius: 50%;
  border: 3px solid #00ffc8;
  object-fit: cover;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

}
