body{    
    background-image: url(images/bg.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: 100% 100%;
    text-align: center;    
}

.content{
    width: 95%;
    height: 95%;
    background-color: rgba(60,135,120,0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;  
    margin: auto;
    padding: 0px;
    border-radius: 10px;
}

table{
    margin-left: auto;
    margin-right: auto;
}

table, th, td{
    background-color: rgb(180,210,210);
    border: 2px solid;
    border-collapse: collapse;   
    width: 20%;
    align-content: center;
}
td{
    transition: 0.05s ease-in-out;
    padding-left: 5px;
    padding-right: 5px;
}
td:hover{
    transform: scale(1.05);
    background-color: rgb(200,230,230);
}

img{
    transition: 0.3s ease-in-out;
    margin: 15px;
    margin-top: 5%;
    margin-bottom: 5%;
    width: 60%;
    height: auto;
    border-radius: 10px;  
}

img:hover{
    transform: scale(1.1);
}

.mozaik{
    display: flex;
    justify-content:center;
    align-items: flex-start;
    width: 50%;
    height: auto;
    margin: 1% auto;
}

.mozaik img{
    border: 2px solid;
    border-radius: 0px;
    width: 33%;
    height: auto; 
    margin: 0px;
}


ol{
    width: 80%;
    margin-top: 5px;
    margin-left: auto;
    margin-right: auto;
}
li{
    padding-left: 10px;
    padding-top: 10px;
}

a{
    text-decoration: none;
    color: rgb(50,50,50);
}
a:hover{
    text-decoration: underline;
}

strong{
    color: red;
}

footer{
    margin-top: 10%;
}

h3{
    font-size: 95%;
    font-weight: bold;
}

