div#kirjeldus{
    width: 300px;
    height: 235px;
    padding: 70px;
    position: absolute;
    top: 710px;
    left: 810px;
    border: 1px double #59656d;
    background-color: #e6e6e6;
}
body {
    font-family: Arial, sans-serif;
    background-color: #e5e5f8;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
h1{
    font-family:Georgia, Times, serif ;
    letter-spacing: 2px;
    font-variant: small-caps;
    color: #DCDCDC;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
}
nav {
    background-color: #333;
    width: 100%;
}
.menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.menu li {
    position: relative;
    flex-grow: 1;
    text-align: center;
}
.menu li a {
    color: white;
    padding: 14px 20px;
    text-decoration: none;
    display: block;
    background-color: #333;
}
.menu li:hover > a {
    background-color: #444;
}
.dropdown {
    display: none;
    position: absolute;
    background-color: #444;
    width: 100%;
    padding: 0;
}
.dropdown li {
    width: 100%;
    list-style-type: none;
}
.dropdown li a {
    padding: 12px 16px;
    display: block;
    color: white;
    text-align: center;
}
.dropdown li a:hover {
    background-color: #555;
}
.menu li:hover .dropdown {
    display: block;
}
.background-main {
    background-image: url('HomePageMain.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 500px;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

section {
    margin-bottom: 20px;
    padding: 15px;
    background: #fff;
    border-radius: 8px;

}
h2 {
    color: #333;
}
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1px;
    width: 100%;
}
img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}
main{
    width: 100%;
    background-color: #e6e6e6;
}
.text {
    padding: 20px;
    max-width: 1182px;
    margin: auto;
    background: #ececec;
    border-radius: 8px;
}