    /* Grundsätzlich: Alle margins und paddings zurücksetzen, Box-Sizing anpassen und Grundschriftgröße festlegen */
    
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-size: 16px;
    }
    /* Main: Außenschläge, Einrundung der Ecken und etwas Abstand zum Inhalt */
    
    main {
        margin: 80px 120px 0 120px;
        border-radius: 15px;
        padding: 10px;
        padding-bottom: 200px;
    }
    /* Section: als Flexbox aufgebaut, Inhalt in einer Zeile mit Abstand dazwischen, Hintergrund etwas dunkler */
    
    section {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        background-color: #B0B0B0;
        border-radius: 35px;
        padding: 25px;
        align-items: center;
        gap: 20px;
    }
    /* Article: als Spalte aufgebaut, mit großem Abstand dazwischen */
    
    article {
        display: flex;
        flex-direction: column;
        gap: 95px;
        margin-top: 80px;
    }
    /* H2: zentriert und groß */
    
    h2 {
        text-align: center;
        font-size: 3rem;
    }
    /* Bilder: passend zum vorhandenen Bereich skaliert */
    
    .Img-Olympic-1 {
        width: auto;
        height: auto;
    }
    /* Section-Divs: als kleiner Bereich mit Hintergrund, abgerundet, Inhalt zentriert */
    
    section div {
        padding: 20px 0;
        background-color: rgb(204, 200, 200);
        border-radius: 10%;
        width: 40%;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: rgb(208, 204, 204);
    }
    /* Paragraph: kleiner Bereich mit Hintergrund und etwas padding, Ecken etwas abgerundet */
    
    p {
        background-color: rgb(204, 200, 200);
        padding: 20px;
        border-radius: 20px;
    }