* {
    margin: 0;
    padding: 0;
    font-family: "Cabin", sans-serif;
    font-optical-sizing: auto;
    overflow: hidden;
}

.container-nav {
    width: 100%;
    height: 150px;
    background-color: #0d0d0d;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

#logo {
    width: 50px;
}

#logo-text {
    color: white;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
}

#nav-brand {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    padding: 30px;
}

.title-section {
    font-weight: bold;
    font-size: 25px;
    color: #8c695d
}

.text-field {
    color: #404040;
    font-size: 15px;
}

#container {
    display: flex;
    flex-direction: row;
}

.container > div {
    width: 50%; /* ajuste o tamanho dos containers */
    margin: 10px; /* ajuste o espaçamento */
  }
#container{
    width: 100%;
    display: grid;
    grid-template-columns: 2fr 2fr;
    grid-gap: 20px;
}

  .title-noti{
    font-weight: bold;
    font-size: 30px;
    color: #8c695d
  }

  .img-noti{
    width: 100%;
  }

  footer {
    width: 100%;
    height: 30px;
    background-color: #0d0d0d;
    display: flex;
    text-align: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    bottom: 0;
    font-size: 18px;
    overflow: hidden;
    position: fixed;
    bottom: 0;
    text-align: center;
    color: white;
    font-weight: 300;
    padding: 10px;
    font-size: small;
}

@media screen and (max-width: 800px) {
    #container {
        grid-template-columns: 1fr;
    }
}