body {
    background-color: #E2E3E5;
}

/* Container principal */
.notfound-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
    padding: 20px;
    margin-left: 30px;
    margin-right: 30px;
    background-color: #E2E3E5;
}

/* Contêiner de imagem */
.image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.notfound-image {
    max-width: 80%;
    height: auto;
    max-height: 350px;
}

/* Contêiner de mensagem */
.message-container {
    flex: 1;
    text-align: center;
    padding: 20px;
}

.notfound-title {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.notfound-message {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
}

.btn-go-home {
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    background-color: #0470d0;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-go-home:hover {
    background-color: #0056b3;
}

@media (max-width: 768px) {
    .notfound-container {
        flex-direction: column;
    }

    .image-container {
        margin-bottom: 20px;
    }

    .notfound-title {
        font-size: 28px;
    }

    .notfound-message {
        font-size: 16px;
    }

    .btn-go-home {
        font-size: 14px;
    }
}
