@font-face {
    font-family: "MatrixNFI";
    src: url("matrix code nfi.ttf") format("truetype");
}


* {
    margin:0;
    padding:0;
    box-sizing:border-box;
}


html,
body {

    width:100%;
    height:100%;

    overflow:hidden;

    background:#000;

    display:flex;
    justify-content:center;
    align-items:center;

}



/* Matrix background */

#matrix {

    position:absolute;

    inset:0;

    width:100%;
    height:100%;

    z-index:0;

}



/* Logo */

.logo-container {

    position:relative;

    z-index:2;

    width:min(85vw,950px);

    display:flex;

    justify-content:center;
    align-items:center;

}


.logo-container img {

    width:100%;

    height:auto;

    display:block;

}