
.noticesArea{
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4%;
}
 .editavel{
    width: 100%;
    height: 100%;
    position: absolute;
    right: 0;
    background-color: #666;
 }
 .areaEditavel{
    width: 100%;
    height: 100%;
    position: relative;
}
.conteudo{
    width: 96%;
    height: 96%;
    background-color: #fffc;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    border-radius: 10px;
    box-shadow: 1px 2px 6px black;

}
.areaConteudo{
    width: 100%;
    height: 100%;
    position: relative;
}
