

body {
    color: white;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
    margin: 0;
    background: rgb(245,251,252);
    background: linear-gradient(126deg, rgba(245,251,252,1) 0%, rgba(166,191,220,1) 24%, rgba(140,112,179,1) 63%, rgba(101,5,98,1) 100%);
    
}



canvas{
    position:absolute;
    left:0;
    top:0;
    z-index:-1;
    min-width: 100vw;
    min-height: 100vh;
    object-fit: cover;
    max-width: unset;

}
.content-box {
    background-color: rgba(0,0,0,0.5);
    width: 60%;
    padding: 2em;
}
.content-box h1 {
    font-size: 6rem;
    font-weight: 600;
}
.content-box h2 {
    font-size: 1.2rem;
}
.content-box .networks-container {
    margin-top: 2em;
}
.content-box .network {
    background-color: rgba(0,0,0,0.5);
    margin: 0.5em;
    text-align: left;
    padding: 1rem;
}
.content-box .network-descriptor {
    font-weight: bold;
}
.content-box .network-value {
    font-family:
        "SFMono-Regular",
        Consolas,
        "Liberation Mono",
        Menlo,
        Courier,
        monospace;
}
.content-box .network-ssid {
    font-size: 1.5rem;
}
.content-box .network-password {
    font-size: 1.2rem;
}

.content-box .contact {
    position: fixed;

    right: 1rem;
    bottom: 1rem;
    color: grey;
}

a {
    color: rgb(37, 164, 223);
    text-decoration: none;
}

@media screen and (max-width: 1100px) {
    .content-box {
        padding: 2em;
        width: 100vw;
        height: 100vh;
        box-sizing: border-box;
    }
}

@media screen and (max-width: 780px) {
    .content-box h1 {
        font-size: 3rem;
        font-weight: 600;
    }
}