body {
  margin: 0;
  padding: 0;
  font: bold 14px/1.4 'Open Sans', arial, sans-serif;
  color: #fff;
}

.content{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px
}

#canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    }
.logo {
  margin-right: auto;
  padding-left: 20px;
  margin-top: 10px;
  margin-left: 5px;
}

/*.logo img {
  height: 40px; /* Adjust the height as needed */

.glass-container{
    min-height: 250px;
    max-width: 600px;
    min-width: 400px;
    padding: 30px 50px;
    border-radius: 50px;
    background-color: rgba(255, 255, 255, 0.114);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    border-left: 1px solid rgba(255, 255, 255, 0.3);

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;

    font-family: Poppins, sans-serif;
    font-size: 18px;
    text-align: justify;
    line-height: 185%;
}
header{
    display: flex;
    flex-direction: row; /* This is default so you can omit it but it's good to be explicit  */
    justify-content: flex-start; /* This will snap all content of header to the left due to 'flex-direction: row'  */
    background-color: black;
    border-bottom: solid;
    padding: 0.5rem 1rem; /* Padding top/bottom then left/right. 1rem = default pixel size of html font (14px or 16px etc) so 0.5rem = 7px or 8px  */
  }
  header > img{
      height: 90px; /* Set the height of your image  */
      width: auto; /* Keep the height/width ratio of source image  */
    }
    ul {
      margin: 10px auto 0;
      padding: 0;
      list-style: none;
      display: flex;
      flex-direction: row;
      flex: 1; /* Use the rest of the available space of the <header> */
      justify-content:center; /* Keep the links in the center of this element  */
      align-items: center;
      width: 600px;
      text-align: center;
    }

    li {
      display: table-cell;
      position: relative;
      padding: 15px 0;
    }
    a {
      color: white;
      text-transform: uppercase;
      text-decoration: none;
      letter-spacing: 0.15em;
      display: inline-block;
      padding: 15px 20px;
      position: relative;
    }

a:after {
  background: none repeat scroll 0 0 transparent;
  bottom: 0;
  content: "";
  display: block;
  height: 4px;
  left: 50%;
  position: absolute;
  background: #fff;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0;
}

a:hover:after {
  width: 100%;
  left: 0;
  background-color:#0F0;
}

@media screen and
(max-height: 200px) {
    ul {
        margin-top: 40px;
    }
}

#urlList {
    list-style-type: none; /* Removes default bullet points */
    padding: 0;
}

#urlList li {
    display: block; /* Ensures list items stack vertically */
    margin-bottom: 5px; /* Adds space between items */
}




