body {
    background-image: url('evilbg.jpg');
    background-color: black; 
    background-repeat: repeat; 
    font-family: Verdana, Geneva, sans-serif;
    color: red; 
    text-align: center;
    padding-top: 100px;
}

h1 {
    font-size: 70px;
    letter-spacing: -5px;
}

.box {
    background-color: #FF0000; /* Bright red background for the box */
    color: black;              /* Makes text inside the box readable */
    border: 5px solid #880808; /* Added 'solid' so it actually appears! */
    padding: 20px;
    margin: 20px auto;        /* 'auto' centers the box on the page */
    width: 60%;               /* Makes the box not take up the whole screen */
} /* Added the missing closing brace! */
.evil-boss {
    width: 400px;             /* Change this to make him bigger or smaller */
    margin-top: 20px;         /* Gives some space between the box and the image */
    }