html{
    font-family: Arial, Helvetica, sans-serif;
}
body{
    background-color: #333;
    color: aliceblue;
}
#kontener{
    background-color: black;
    max-width: 800px;
    min-width: 400px;
    margin-left: auto;
    margin-right: auto;
    padding: 10px;
}
p{
    text-align: justify;
}
p:hover{
    color: greenyellow;
}
a{
    color: lightcoral;
}
a:hover{
    color: yellow;
}
.jobbra-img{   
    float: right;
    margin-left: 10px;
}
.mirror{
    transform: scaleX(-1);
}
.balra-img{
    float: left;
    margin-right: 10px;
}
img{
    filter: sepia(50);
    max-width: 200px;
}
.text-right{
    text-align: right;
    font-weight: bold;
}
figure{
    width: fit-content;
    border: 10px outset silver ;
    border-radius: 5px;
    padding: 20px;
    background-color: darkslategray;
    text-align: center;
    margin: 0;
    margin-bottom: 2px;
}

figure:hover{
    border-style:inset ;
}

.clearfix::after{
    content: "";
    clear: both;
    display: table;
}