@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: hsl(0, 0%, 10%);
    color: #fff;
    display: flex;
    flex-direction: column;
}

header, footer {
    background: #333;
    color: #fff;
    text-align: center;
    z-index: 2;
}

header {
    padding: 1rem 0;
}

header #as {
    font-weight: normal;
}

header #numbers {
    font-weight: bold;
}

canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.cback {
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(0.2rem);
    pointer-events: none;
    border-radius: 1rem;
    padding: 1rem 2rem;
    box-sizing: border-box;
    text-align: center;
    display: inline-block;
    z-index: 2;
}

#contact {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    z-index: 2;
    
}

#contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#contact li {
    margin-top: 0.5rem;
}

#contact a {
    color: #ffffff;
    text-decoration: none;
}

#contact a:hover {
    color: #cccccc;
}

footer {
    text-align: center;
    font-size: 0.8rem;
    padding: 0.4rem;
    box-sizing: border-box;
}

footer p {
    margin: 0;
}