* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    overflow: hidden;

    background: #111;

    font-family: Arial, sans-serif;
}

#dashboard {

    width: 100vw;
    height: 100vh;

    display: grid;

    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);

    gap: 12px;
    padding: 12px;

}

.panel {

    display: flex;
    flex-direction: column;

    border: 2px solid white;
    border-radius: 20px;

    background: #1b1b1b;

    color: white;

    padding: 20px;

    overflow: hidden;

}

.panel-title {

    font-size: 28px;
    font-weight: bold;

    margin-bottom: 20px;

}

.panel-content {

    flex: 1;

    font-size: 18px;

}