@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

*{
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-style: normal;
    box-sizing: border-box;
}

main{
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}

main canvas{
    overflow: hidden;
}

.container{
    padding: 50px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(98, 98, 98, 0.2);
    backdrop-filter: blur(5px);
    overflow: auto;
}

h1{
    margin: 0;
    font-size: 3rem;
    color: white;
}

p{
    margin: 0;
    font-size: 1.7rem;
    color: white;
}

ul li{
    list-style: none;
    text-decoration: none;
    font-size: 2rem;
    margin-bottom: 5px;
    width: fit-content;
}

/*ul li::before{*/
/*    content: "->";*/
/*    color: white;*/
/*    margin-right: 20px;*/
/*}*/

ul li a{
    color: #95fff7;
    text-decoration: underline;
    transition: ease-in-out 0.1s;
}

ul li:hover a{
    margin-left: 25px;
    transition: ease-in-out 0.1s;
}