body {
    background-color: BlanchedAlmond;
    color: Sienna;
    margin: 0;
    padding: 10px;
    width: 1200px;
    background-image: url("../pics/TLU_logo_uks_h100.png");
    /*background-repeat: repeat-x; kordab ainult x telje suunas või no-repeat, ainult ühe korra*/
    background-repeat: no-repeat;
    background-position: 1300px 10px;
    background-attachment: fixed; /*default on scroll, ehk siis läheb kaduma*/

}
h1, h2, h3 {
    color: #2F4F4F;
    text-decoration: underline;
    text-align: center;
    /*kommentaar*/
}
h1{
    font-size: 35pt;
    font-style: oblique;
    font-weight: 100;
    text-align: center;
}
main {
    font-family: verdana, sans-serif;
}
section {
    border-width: 3px; /*ei pea eraldi kirjutama edasisi vaid lihtsalt border: ja väärtused. programm saab  ise aru, samuti nagu animatsiooniga*/
    border-style: solid;
    border-color: #edcbb3;
    padding: 20px;
    margin-top: 10px;
    border-radius: 20px; /* nurgad ümaraks*/
    box-shadow: 0 0 10px #D2691E, 0 0 10px #D2691E inset;/*x ja y(alla) ja z telg, inset sisse pool joonest*/
    /*text-shadow ka variant, et tekstile hägu panna*/
    background: 
            url("../pics/sulg1.png") top 5px left 5px, 
            url("../pics/sulg2.png") top 5px right 5px, 
            url("../pics/sulg3.png") bottom 5px right 5px, 
            url("../pics/sulg4.png") bottom 5px left 5px;
    background-size: 50px;
    background-repeat: no-repeat;
}
a:link {
    color: sienna;
}
a:visited {
    color: sienna;
}
a:hover {
    color: rgb(251, 138, 0);
    font-weight: 600;
    text-decoration: underline overline;
}
a:active {
    color: green;
    font-weight: 600;
}
header img {
    border-radius: 40px;
}
section img {
    border-radius: 30px;
    /* transition: all 1s; */
    
}
section img:hover {
    border-radius: 0px;
}
table {
    border-collapse: collapse;
    border-style: double;
    border-width: 2px;
    table-layout: auto;
}
table tr, table td , table th {
    border-width: 2px;
    border-collapse: collapse;
    border-style: double;
}
canvas {
    background-color: white;
    border: 1px solid black;
}