body {
    margin-top: 0;
    background-color: hsl(207, 24%, 67%);
}

.parent {
    display: grid;
    grid-template-columns: 3% 94% 3%;
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
}

.div1 {
    grid-area: 1 / 1 / 2 / 2;
    background-color: hsl(207, 24%, 67%);
}

.div2 {
    grid-area: 1 / 2 / 2 / 3;
    background-color: hsl(206, 19%, 85%);
}

.div3 {
    grid-area: 1 / 3 / 2 / 4;
    background-color: hsl(207, 24%, 67%);
}

header {
    height: 80px;
}

#fejlec {
    width: 100%;
    height: 100%;
}

nav {
    position: sticky;
    top: 0;
    padding: 10px;
    background-color: hsl(207, 24%, 67%);
}

nav span {
    font-weight: bold;
}

nav ul {
    margin: 0;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown .content {
    display: none;
    position: absolute;
    border-left: 1px solid hsl(206, 19%, 85%);
    border-right: 1px solid hsl(206, 19%, 85%);
    border-bottom: 1px solid hsl(206, 19%, 85%);
    background-color: hsl(207, 24%, 67%);
    min-width: 216px;
}

.content div {
    border-top: 1px solid hsl(206, 19%, 85%);
    padding: 10px 15px;
}

.dropdown:hover .content {
    display: block;
}

main {
    padding-top: 2%;
    padding-left: 4%;
    padding-bottom: 2%;
    padding-right: 10%;
}

ol > li::marker {
    font-weight: bold;
}

.flexdiv {
    display: flex;
    flex-direction: column;
}

.flexdiv-text {
    align-self: flex-start;
}

.flexdiv-image {
    text-align: center;
}

.flex-image {
    max-width: 50%;
    height: auto;
}

.image-map {
    max-width: 100%;
    height: auto;
}

.image {
    display: flex;
    max-width: 75%;
    height: auto;
    margin: auto;
}

.footerhr {
    background-color: hsl(207, 24%, 67%);
    border: none;
    height: 20px;
}

footer {
    height: 70px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    text-align: center;
    gap: 5%;
    padding: 10px;
    padding-bottom: 20px;
    background-color: hsl(206, 19%, 85%);
    font-weight: bold;
}