@charset "utf-8";

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* IMPORTANTE */
html, body {
    width: 100%;
    height: 100%;
}

/* Centralização correta */
body {
    background-color: #1c1c1c;
    color: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 14px;
    overflow: hidden;

    display: flex;
    justify-content: center;
    align-items: center;

    min-height: 100vh; /* chave */
}

/* Container */
.noticias_container {
    width: 748px;
    height: 466px;

    display: flex;
    justify-content: center;
    align-items: center;
}

/* Box */
.noticias_box {
    width: 90%;
    height: 90%;
    padding: 20px;
    background-color: #111;
    border: 1px solid #444;
    border-radius: 8px;
    overflow-y: auto;
}