h1 {
    background-color: cornflowerblue; /*tausta värv*/
    color: forestgreen; /*teksti värv*/

}
header , footer {
    font-family: georgia;
    font-size: large;
    width: 60%;
    border: 5px dotted grey;/*dashed, dotted, double, outlined*/
    background-color: cornflowerblue;
    border-radius: 120px;
    padding:1%; /*vahe teksti ja piiri vahel*/
}
nav ul {
    list-style-type: none;
    text-align: center; /*teksti joondamine keskel*/
    margin: 2%;
    padding: 0;
    background-color: cornflowerblue;
}
nav li {
    display: inline-block;
    float: left;
    padding: 1%;
}
main{
    margin: 50px;
    padding: 1%;
}
nav a:hover{/*link fookuses*/
    background-color: cornflowerblue;
}
nav li a{
    font-family: georgia;
    font-size: large;
    text-decoration: none;
    border-right: 1pt solid grey;
    border-left: 1pt solid grey;
    border-radius: 120pt;
    padding : 10px;
}
#haridusTekst {
    color: black;
    position: relative;
}
#title2 {
    color: black;
    margin-top: 20px;
}
#indexJquery {
    background-color: aliceblue;
    border: 2px solid grey;
    border-radius: 10px;
    padding: 20px;
    margin-top: 30px;
}
#indexJquery h1 {
    font-size: 20px;
    margin-bottom: 10px;
}
#indexJquery p {
    margin-bottom: 15px;
    line-height: 1.5;
}
input[type="button"] {
    padding: 8px 12px;
    background-color: beige;
    color: cornflowerblue;
    border: black solid 1px;
    border-radius: 4px;
    cursor: pointer;
    margin: 5px 5px 10px 0;
}

input[type="button"]:hover {
    background-color: orangered;
}

#title {
    position: relative;
}