* {
    font-family: 'Poppins', sans-serif;
}


body {
    background: linear-gradient(120deg, #21526e, #191414);
}

main {
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    height: 100%;
}

.icon {
    display: flex;
    background-color: rgba(0, 0, 0, 0.444);
    border-radius: 130px 70px 130px 70px;
}

.error {
    color: white;
    padding: 25px 100px 25px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.errormessage {
    font-size: 42px;
    font-weight: 500;
    display: block;

}

.commingback {
    font-size: 24px;
    display: block;

}

img {
    width: 150px;
    padding: 40px;
    background-color: black;
    border-radius: 130px 70px 130px 70px;
}


@media only screen and (max-width: 1300px) {
    .errormessage {
        font-size: 32px;
    }
    img {
        width: 150px;
        padding: 40px;
    }
}

@media only screen and (max-width: 1100px) {
    .error {
        padding: 20px 50px 20px 30px;
    }
}

@media only screen and (max-width: 600px) {
    .icon {
        flex-direction: column;
    }
}