/* *,
*::before,
*::after {
    box-sizing: border-box;
} */

a {
    text-decoration: none;
}
body {
    font-family: 'Inter', sans-serif;
    width: 100%;
    margin: 0;
    overflow: hidden;
}
  
canvas {
    width: 100%;
    height: 100%;
}

h1 {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    max-width: 100%;
    justify-content: center;
    text-align: center;
    /* padding-top: 1%; */
}

.container {
    --max-width: 50rem;
    width: min(100% - 2rem, var(--max-width));
    margin-inline: auto;
}

.hero {
    position: relative;
    isolation: isolate;
    padding: 1em;
}

.canvas-container {
    position: absolute;
    z-index: -1;
    inset: 0;
    height: 100vh;
}
.button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 60vh;
}
.btn-links {
    width: 300px;
    margin: 10px;
    
}

.btn {
    opacity: 0.5;
    background: black;
    background-image: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0px;
    color: #ffffff;
    font-size: 20px;
    padding: 10px 20px 10px 20px;
    text-decoration: none;
    display: block;
    transition: all .2s ease-in-out;
  }
  
  .btn:hover {
    opacity: 1;
    background: black;
    text-decoration: none;
    color: #ffffff;
    transform: scale(1.1)
  }