 body, html {
   margin: 0;
   padding: 0;
   height: 100%;
   display: flex;
   justify-content: center;
   align-items: center;
   flex-direction: column;
}

         
         #vanta-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 200%;
            z-index: -1;
         }
         #content {
            position: relative;
            z-index: 1;
            text-align: center;
            color: white;
            
         }
    .button-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 fixed columns */
    gap: 20px;
    width: 100%;
    max-width: 1000px; /* Adjust as needed */
    margin: 50px auto;
    justify-content: center;
}


.cloak-button {
    background: transparent;
    border: 2px solid white;
    color: white;
    font-size: 20px;
    padding: 15px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
    font-family: 'Exo', sans-serif;
    text-align: center;
    width: 100%;
}

.cloak-button:hover {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 10px white;
}

