
h1{
    text-align: center;
}

/*Övning A*/

/* Lager på varandra med positionering och z-index */
.Lager{
    margin-top: 100px;
    width: 170px;
    height: 100px;
}

#grön{
    background-color: green;
    position: absolute;
    left: 90px;
    top: 60px;
}

#gul{
    background-color: yellow;
    z-index: 2;
    position: absolute;
    left: 70px;
    top: 100px;
}

#blå{
    background-color: blue;
    color: white;
    z-index: -1;
    position: absolute;
    left: 50px;
    top: 30px;
    
}

/*stycket med bakgrundsbild*/

#stycke{
    width: 400px;
    padding: 2px;
    margin-top: 300px;
    text-align: right;
    background-image: url("Bilder/bakgrundsbild.jpg");
    background-size: cover;
    border: solid rgb(0, 42, 255) 5px;
    color: white;
}

.spacing{
    background-color: yellow;
    letter-spacing: 7px;
    color: black;
}

#line_through{
    text-decoration: line-through;
}

/*Text indentering*/

.indragen {
    margin-top: 50px;
    text-indent: 50px;
    width: 500px;
}
