body {
    background-color: rgba(0, 0, 0, 0.5);
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Yhteiset tyylit div elementille */
div {
    padding: 20px;
    margin: 10px 0;
}

/* Luokka tekstin keskelle ja punaiseksi */
.text-center {
    text-align: center;
}

.red {
    color: red;
}

/* Luokka tekstin vasemmalle ja siniseksi */
.text-left {
    text-align: left;
}

.blue {
    color: blue;
}

/* Luokka tekstin oikealle ja vihreäksi */
.text-right {
    text-align: right;
}

.green {
    color: green;
}

/* Fonttikoko 300% */
.text-large {
    font-size: 300%;
}

/* Tähteä (*) kursivoiduksi tekstille */
div {
    font-style: italic;
}

/* Poikkeus, ei kursivoitua tekstiä */
.no-italic {
    font-style: normal;
}

/* Taustakuva, pysyy paikoillaan skrollatessa */
body {
    background-image: url('musta tausta.webp'); /* Esimerkkikuva */
    background-position: right top;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Teksti, joka tekee skrollattavan sisällön */
.content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8); /* Valkoinen taustaväri, mutta hieman läpinäkyvä */
}