/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  color: lightblue;
  font-family: "Helvetica", "Trebuchet MS", "Verdana", sans-serif;
}

a {
  text-decoration: none;
  font-weight: bold;
}

/* unvisited link */
a:link {
  color: #ffffff;
}

/* visited link */
a:visited {
  color: #fff;
}

/* mouse over link */
a:hover {
  color: purple;
}

/* selected link */
a:active {
  color: lightblue;
}

.footer {
  /* Footer styles */
  background-color: #000;
  position: sticky;
  text-align: center;
}

div {
  display: block;
  box-shadow: none;
  vertical-align: bottom;
}

.background {
  background-color: #CCC;
  background-repeat: repeat-x;
  width: 100%;
  height: 100%;
  background-image: url("img/DQ-face.jpg");
  background-attachment: fixed;
  webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: contain;
  background-position: center; /* Fallback for older browsers */
}

table {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10%;
  height: 75%;
  padding: 2%;
  text-align: center;
  vertical-align: middle;
}

.glass-panel {
  /* Semi-transparent background is required to see the blur */
  background-color: rgba(0, 0, 0, 0.25);
  
  /* Apply the blur to the backdrop */
  -webkit-backdrop-filter: blur(10px); /* Safari support */
  backdrop-filter: blur(10px);
  
  /* Optional: Add borders/shadows for glass effect */
  border-radius: 25px;
  box-shadow: 10px 10px 15px 1px rgb(0 0 0 / 20%);
  border: 0px solid rgba(100, 0, 255, 0.18);
}

.img {
  width: 175px;
  z-index:999; 
  cursor: pointer; 
  -webkit-transition-property: all; 
  -webkit-transition-duration: 0.7s; 
  -webkit-transition-timing-function: ease; 
} 

/*change the number below to scale to the appropriate size*/ 

.img:hover { 
  transform: scale(1.3);
}

/* Tooltip container */
.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black; /* Add dots under the hoverable text */
  cursor: pointer;
}

/* Tooltip text */
.tooltiptext {
  visibility: hidden; /* Hidden by default */
  top: 20%;
  right: 130%;
  width: 130px;
  background-color: rgba(0, 0, 0, 0.25);
  color: #ffffff;
  text-align: center;
  padding: 30px;
  border-radius: 25px;
  position: absolute;
  z-index: 1; /* Ensure tooltip is displayed above content */
}

/* Show the tooltip text on hover */
.tooltip:hover .tooltiptext {
  visibility: visible;
}

.tooltiptext::after {
  content: " ";
  position: absolute;
  top: 50%;
  left: 100%; /* To the right of the tooltip */
  margin-top: -10px;
  border-width: 10px;
  border-style: solid;
  border-color: transparent transparent transparent rgba(0, 0, 0, 0.25);
}

h1 {
  text-align: center;
  letter-spacing: 50px;
}

ul {
  list-style: none;
}