* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 12px;
}

.content {
    width: 100vw;
    height: 100vh;
    background-color: #e5e5e5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content .rhombus {
    position: absolute;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: url(../assets/images/rhombus.svg);
    width: 100%;
    height: 100%;
}

.content .center-box {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    max-height: 340px;
}

.content .center-box h2 {
    max-width: 394px;
    color: #4d4d4d;
    font-family: "Poppins";
    font-style: normal;
    font-weight: 500;
    font-size: 2.5em;
}

.content .center-box p {
    max-width: 302px;
    color: #808080;
    font-family: "Roboto";
    font-style: normal;
    font-weight: 400;
    font-size: 1.25em;
    line-height: 1.75em;
    text-align: center;
    letter-spacing: 0.025em;
}

.content .center-box .img-404 {
    width: 100%;
    max-width: 80vw;
}

@media (max-width: 600px) {
    .content .rhombus {
        display: none;
    }
}
