.notfound {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgb(255 255 255);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 100;
}

.notfound .icon {
    font-size: 76px;
    color: red;
}

.notfound .name {
    font-size: 26px;
    /* font-weight: bold; */
    margin: 10px 0;
    text-align: center;
}

.notfound .name span {
font-size: 18px;
}

.notfound .footer {
    width: 100%;
    position: absolute;
    bottom: 30px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    row-gap: 5px;
}

.notfound .footer span {
    font-size: 18px;
    font-weight: normal;
    display: flex;
    align-items: center;
    column-gap: 5px;
}

.notfound .footer span div:nth-child(1) {
    color: dimgray;
}

.notfound .footer span div:nth-child(2) {}

.notfound .footer img {
    width: 40px;
    margin: 0;
}