body {
    font-family: 'Alatsi', sans-serif;
    color: white;
    margin: 0;
    background-color: #025002;
    height: 100vh;
    background: linear-gradient(157deg,#c28160,#c5a908,#b3076a,#da1d04);
    background-size: 240% 240%;
    animation: gradient-animation 20s ease infinite;
}

@keyframes body {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
}

.title {
    font-size: 10vw;
    color: white;
}

canvas {
    width: 100%;
    position: absolute;
    height: 100vh; 
    display: block;
}

.nodeCount {
  color: cyan;
  font-size: 10px;
  font-weight: bold;
  padding: 2px;
  background-color: rgba(0, 0, 0, 0.75);
}

.glass {
    width: 650px;
    z-index: 10;
    padding: 10px;
    color: #fff;
    border-radius: 10px;
    
    /* other styles */
    background: rgba(39, 39, 39, 0.1);
    backdrop-filter: blur(60px);
     /* fallback for old browsers */
    -webkit-backdrop-filter: blur(60px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 80px rgba(0, 0, 0, 0.3);
    
    margin: 5px;
}

.content {
    margin-left: auto;
    margin-right: auto;
    padding-top: 50px;
    width: fit-content;
}

a {
    color: white;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.footer {
    text-align: center;
}

.pagetitle {
    font-weight: bold;
    font-size: 22px;
    text-align: center;
}

.projectthumb {
    width: 100%;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
