#container{
    box-sizing: border-box;
    border: black 2px solid;
    height: 100%;
    width: 100%;
    max-width: 100%;
}

#menu-superior{
    box-sizing: border-box;
    border: black 2px solid;
    height: 20vh;
    width: 100vw;
    max-width: 100%;
    background-color: green;
}

#menu-opcoes ul li{
    background-color: white;
    list-style-type: none;
    display: inline;
}

body {
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.banner {
    background: url('https://wallpapers.com/images/hd/panther-1920-x-1200-background-8az3ygd3x7le6rvm.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 3em 0;
    position: relative;
}

.banner-content {
    background-color: rgba(2, 68, 97, 0.5);
    display: inline-block;
    padding: 1em 2em;
    border-radius: 10px;
}

.banner h1 {
    font-family:sans-serif;
    font-size: 3em;
    margin: 0;
}

.noticia {
    background-color: rgb(255, 255, 255);
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.noticia:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.noticia h2 {
    color: #011214;
    margin-top: 0;
}

.noticia p {
    color: #0b0f11;
}

