@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Cabin:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap');
* {
    margin: 0;
    padding: 0;
    list-style: none;
    box-sizing: border-box; /* Add box-sizing to handle padding and border consistently */
}
html, body {
    overflow: hidden;
    width: 100%;
    height: 100%;
}

body {
    background: black;
}

.p404 {
    z-index: 1000001;
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: black;
}
.p404 img {
    width: 4rem;
    position: absolute;
    top: 50vh;
    left: 50vw;
    transform: translate(-50%, -50%);
}