body{
    background-color: azure;
    color: darkgray;
    text-align: left;
    margin-left: 50px;
}

h1{
    text-align: center;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    text-transform: uppercase;
    text-shadow: 10px 10px rgba(0, 0, 0, 0.7);

}

h2{
    color: deeppink;
    font-family: "Brush Script MT", cursive;
    letter-spacing: 15px;
}

.uvod{
    font-weight: bolder;
    text-decoration: underline;
    font-size: 30px;
    text-align: center;
    background-color: hotpink;
}

.opis{
    text-align: justify;
    line-height: 24px;
    word-spacing: 10px;
    color:crimson;
}

li{
    list-style-type: square;
    color: blue;
    font-family: fantasy;
    padding-left: 20px;
}

a{
    color: gold;
    text-decoration: none;
}

a:hover{
    color: red;
    text-decoration: underline;
}

a:active{
    font-size: 80px;
    color: indigo;
}

.kontakt{
    color: lime;
    font-family: cursive;
}

button{
    background-color: darkblue;
    color: aqua;
    padding: 50px;
    border-radius: 20px;
    
}

button:hover{
    background-color: aqua;
    color: darkblue;
    font-size: larger;
}