body{
    font-family:Ginebra,arial,helvética;
    margin:0px;
  }

html{
    background-image: 
          repeating-linear-gradient(
              45deg,
              #000000,
              #002060 30px,
              #000000 60px,
              #002060 90px            
          );
    height: 100vh;
}

nav.index{
    display:flex;
    flex-direction: column;
    align-items: center;
}

h1.index{
    color:lightblue;
    background: rgba( 255, 255, 255, 0.1 );
    backdrop-filter: blur( 5px );
    padding: 10px;
  }

a.glassmorphism{
    padding: 15px;
    border-radius: 10px;

    background: rgba( 255, 255, 255, 0.03 );
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 10px );
    -webkit-backdrop-filter: blur( 20px );
    
    text-align:center;
    text-decoration:none;
    color:azure;
}

.center{
    display: flex;
    justify-content: center;
}