h1{
    background-color:  ; /*tausta värv*/
    color: whitesmoke; /*teksti värv*/
}
header, footer{
    font-family: Georgia;
    font-size: large;
    width: 100%;
    border: 5px  double black; /*dashed, dotted, double, outline*/
    background-color: dodgerblue;
    border-radius: 120px;
    padding:1%; /*vahe teksti ja piiri vahel*/
}
footer#teine{
    position: fixed;
    bottom: 0%;
    right: 0;
    text-align: center;
    background-color: lightblue; /* Sobiv ovaali taustavärv */
    color: blue; /* Teksti üldine värv */
    border-radius: 120px;
    padding: 1%;
}
/* nimele eraldi stiil */
footer#teine span.nimi {
    color: black; /* Nime värv mustaks */
    font-weight: bold;
}
nav ul{
    list-style-type: none;
    text-align: center; /*teksti joondamine keskel*/
    margin: 0;
    padding: 0;
    background-color: gray;
}
nav li{
    display: inline;
    float: left;
    padding: 2%;
}
main{
    margin: 50px;
    padding: 1%;
}
nav a:hover{/*link fookuses*/
    background-color: darkgray;
}
nav li a{
    font-family: Georgia;
    font-size: xx-large;
    text-decoration: none;
    border-bottom: gray 1px solid;
    border-radius: 5px;
}
/********************section******************/
section#osa1{
    display: inline-block;
    width: 40%;
    border-right: 1pt solid aqua;
    border-left: 1pt solid aqua;
    border-radius: 60px;
    padding: 2%


}
section#osa1 h3{
    text-align: center;
    background-color: aqua;
    border-radius: 60px;
    padding: 2%;
    font-weight: bold;
    font-variant: small-caps;
}
section#osa2{
    display: inline-block;
    width: 30%;
    border-right: 1pt dotted blue;
    border-left: 1pt dotted blue;
    border-radius: 60px;
    padding: 2%


}
section#osa2 h3{
    display: inline-block;
    text-align: center;
    background-color: aqua;
    border-radius: 60px;
    padding: 2%;
    font-weight: bold;
    font-variant: small-caps;
}
section#osa3{
    width: 30%;
    border-right: 1pt dashed yellowgreen;
    border-left: 1pt dashed yellowgreen;
    border-radius: 60px;
    padding: 2%


}
section#osa3 h3{
    text-align: center;
    background-color: aqua;
    border-radius: 60px;
    padding: 2%;
    font-weight: bold;
    font-variant: small-caps;
}


/*****Pildigalerii*****/
section#pildigalerii{

    width: 60%;
    border-right: 5pt solid aqua;
    border-bottom: 5pt solid aqua;
    border-radius: 170px;
    text-align: center;
    margin-top: 30px;
}


section#video{

    width: 60%;
    border-right: 5pt solid red;
    border-bottom: 5pt solid yellow;
    border-radius: 170px;
    text-align: center;
    margin-top: 30px;
}


section#muusika{
    width: 60%;
    border-right: 5pt solid orange;
    border-bottom: 5pt solid black;
    border-radius: 170px;
    text-align: center;

    margin-top: 30px;
}


section#kaart{

    text-align: center;
    background-color: powderblue;
    border-radius: 60px;
    padding: 2%;
    font-weight: bold;
    font-variant: small-caps;
    margin-top: 30px;
    margin-bottom: 30px;



}
/* peida näita*/
#panel, #flip {
    padding: 5px;
    text-align: center;
    background-color: dodgerblue;
    border: solid 1px blue;
}

#panel {
    padding: 50px;
    display: none;
}

/* tume ja hele rexiim*/
body {
    padding: 25px;
    background-color: white;
    color: black;
    font-size: 25px;
}

.dark-mode {
    background-color: black;
    color: white;
}