@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #212529;
    color: #fff;
    margin: 0;
    padding: 0;
	background-image: url('img/background_tela.png');
}
a{
	text-decoration: none;
}

#grad1 {
    background-image: url('img/barra_verde.png');
    background-size: cover;
    background-position: center;
    padding: 30px;
    text-align: center;
}

.titulo {
    background-color: #8cb862;
    color: #000;
    font-size: 18px;
    text-align: center;
    padding: 5px;
    margin-top: 0px;
	width: 250px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
}

.publicacoes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px auto;
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	max-width: 1220px;
}

.publicacao-btn {
    background-color: #333;
    border: 2px solid #389C0E;
    padding: 8px;
    margin: 10px;
    border-radius: 12px;
    cursor: pointer;
    text-align: center;
    width: 350px;
	font-size: 18px;
}

.publicacao-btn:hover {
    background-color: #8cb862;
    color: black;
	
}

.modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #41483e;
    color: #000;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 900px;
    position: relative;
	font-family: 'Montserrat', sans-serif;
	margin-top: -150px;
}

.modal-header {
	background-color: #41483e;
    font-size: 20px;
    color: #8cb862;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
}

.modal-body {
    /*display: flex;
    flex-wrap: wrap;
    gap: 25px;*/
	width: 100%;
	margin: 10px auto;
}

.publicacao-card {
    display: flex;
    align-items: center;
    background: #f0f0f0;
    padding: 10px;
    border-radius: 8px;
    width: 100%;
    gap: 10px;
	color: #000;
    font-size: 13px;
    font-weight: 500;
}
