*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    /* transition: all 0.2s ease; */
    border: none;
}

html{
    background-color: #222222;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23777777' fill-opacity='0.59'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    font-family: Lexend,sans-serif;
    /* font-family:Consolas,Monaco,Lucida Console,Liberation Mono,DejaVu Sans Mono,Bitstream Vera Sans Mono,Courier New; */
}

/* Remove after full release */
body, html{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.welcome{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #333333ad;
    min-height: 400px;
    color: white;
    min-width: 500px;
    padding: 30px;
    border-radius: 25px;
    border: 3px solid #777;
}

/* End of temp */

body{
    position: relative;
    margin: 20px;
}

nav{
    top: 0;
    right: 0;
    position: absolute;
    background: #30303063;
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(6.8px);
    -webkit-backdrop-filter: blur(6.8px);
    border: 1px solid #888;
    overflow: hidden;
}

nav ul{
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
}

nav ul li, nav ul li a{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

nav ul li a{
    color: white;
    padding: 10px 15px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 700;
    border: 1px solid transparent;
}

nav ul li a:hover{
    background-color: rgb(255, 255, 255);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(6.8px);
    -webkit-backdrop-filter: blur(6.8px);
}