body {
    background-color: #000000;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px; /* space between header and box */
}

header h1 {
    font-size: 24px;
    color: #BDDFFE;
    margin: 0;
}

.box {
    background-color: #000000;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 0 20px #BDDFFE;
    max-width: 600px; /* keeps it from stretching too wide */
}

.box p {
    font-size: 20px;
    color: #ffffff;
    margin: 0;
}
