﻿.centralizar_tudo {
    display: flex;
    justify-content: center;
}

.centered-container {
    display: flex;
    justify-content: center; /* Centers the image horizontally */
    align-items: center; /* Centers the image vertically */
    height: 20vh; /* Full viewport height to center vertically */
}

.centered-image {
    width: 50%; /* Adjust the size of the image */
    height: auto; /* Maintain aspect ratio */
    max-width: 600px; /* Optional: limit the maximum width */
    border: 2px solid #000; /* Optional: add a border */
}

/*.responsive-image {
    max-width: 100%;
    height: 200px;
    display: block;
    margin: 0;
}*/
p.truncar-2linhas{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* Define the monospaced font style */
.monospaced-font {
    font-family: Consolas;
}




