/* Hintergrund der Webseite */
body {
    background-color: #EEEEEE;
    margin: 0;
}

/* Musterbox */
.box1 {
    position: absolute;

    /* Position */
    left: 100px;
    top: 80px;

    /* Größe */
    width: 400px;
    height: 200px;

    /* Hintergrundfarbe */
    background-color: #EEEEEE;

    /* Rahmen */
    border: 4px solid #003366;

    /* Runde Ecken */
    border-radius: 20px;

    /* Text */
    color: white;
    text-align: center;
    line-height: 200px;
    font-size: 24px;
    font-family: Arial, sans-serif;
}