body{
    margin:0;
    padding:0;
    box-sizing: border-box;
    min-height: 100vh;
    height:100%;
    display:flex;
    align-items: center;
    justify-content: center;
    font-family:"Space Mono",monospace;
    background: linear-gradient(180deg, #0e1d45 0%, #0b1220 100%);
    color:#e6eef6;
}
.title {
   font-size: 60px;
   color: #6ee7b7;
   letter-spacing: 10px;
   margin-bottom: 10px;
}
.intro{
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.enterbtn{
   margin-top: 60px;
   padding: 12px 28px;
   font-size: 16px;
   background: linear-gradient(90deg, #16a34a, #06b6d4);
   color: #0b1220;
   border: none;
   border-radius: 8px;
   cursor: pointer;
}
.enterbtn:hover {
  transform: scale(1.07);
  box-shadow: 0 0 10px #06b6d4;
}
a{
  text-decoration: none;
  color:inherit;
}
