* {
    margin: 0;
    padding: 0;
}
body {
    width: 95%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Montserrat', sans-serif;
}

#header {
    display: flex;
    justify-content: space-around;
    margin-top: 10px;
    height: 30px;
}

#header img{
    height: 80%;
}

#header p{
    display: flex;
    align-items: center;
}

.navbar ul {
    display: flex;
    list-style-type: none;
    justify-content: space-around;
}

.navbar li {
    text-decoration: none;
}

.navbar a {
    color: #000;
    text-decoration: none;
}

#imgmain {
    width: 100%;
    margin-bottom: 25px;
}

#conteudo {
    width: 100%;
    display: flex;
}

#divesq {
    width: 60%;
    padding-right: 20px;
    border-right: 1px solid #f2f2f2; 
}

#divesq h2 {
    margin-bottom: 10px;
    font-size: 33px;
}

#divdir {
    width: 40%;
    padding-left: 20px;
    display: flex;
    justify-content: space-between;
}

.marcador {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 5px;
}

.bg-pink {
    background-color: #FF007F;
}

.bg-blue {
    background-color: #191970;
}

.topics {
    display: flex;
    align-items: center;
    margin-bottom: 4px;
}

.noticias .notice {
    width: 29%;
    color: #000;
    text-decoration: none;
}

.notice img {
    width: 100%;
    border-radius: 20px;
}

.notice h3 {
    font-size: 15px;
}

.notice p {
    font-size: 12px;
}

.noticias {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.noticias2 {
    width: 45%;
    display: flex;
    flex-direction: column;
}

.noticias2 .notice {
    width: 100%;
    color: #000;
    text-decoration: none;
    margin-bottom: 15px;
}

hr {
	border: 0;
	border-top: 1px solid #f2f2f2;
    margin-top: 10px;
    margin-bottom: 10px;
}

.conteudo hr {
	border: 0;
	border-top: 1px solid #000;
    margin-top: 20px;
    margin-bottom: 20px;
}

.verticaldivider {
    border-right: 1px solid #000; 
    height: 100%;
}