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

/* normal, unvisited link */

.light-theme

a:link {
  color: #3a5ea0;
}

/* visited link */
a:visited {
  color: #33538d;
  
}  
  
a:hover {
  color: #4f76bf;
 
}

body {
  margin: 0;
  padding: 20px;
  min-height: 100vh;
  background: url("https://i.imgur.com/zChNOpg.jpeg");
  background-color: #a8c0ec;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  font-family: "Times New Roman", Times, serif;
  font-size: 24px;
  font-weight: bold;
  position: relative;
}

body *:first-child {
  margin-top: 0;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;

  background: rgba(169, 192, 233, 0.1);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);

  z-index: 0;
}

body > * {
  position: relative;
  z-index: 1;
  
}
  
  .glass {
  background-color: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(16px);

  margin: 0px;
  padding: 20px;
  width: 500px;
  
  border-radius: 12px;
  
  text-align: left;
  
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  
  border: 4px solid rgba(109, 124, 197, 0.8);
  
  overflow: hidden;
  
}

.glass > *:nth-child(odd) {
  color: #6285c6;
}

.glass > *:nth-child(even) {
  color: #4f76bf;
}