/* 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;
}

.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 */
}

@media only screen and (max-width: 1000px) {
    .background {
    background-size: cover;
    background-position: center left; /* Fallback for older browsers */
    background-position: left -375px center; /* Modern 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.2);
}

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

ul {
  list-style: none;
}