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: 160px;
}

#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: 10px;
    padding-left: 4%;
    padding-bottom: 20px;
    padding-right: 10%;
}

ol > li::marker {
    font-weight: bold;
}

.flexdiv {
    display: flex;
    flex-direction: row;
    gap: 5%;
}

.flexdiv-centered {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 5%;
}

.flexdiv-text {
    align-self: flex-start;
}

.flexdiv-image {
    flex-basis: 100%;
    text-align: center;
}

.flex-image {
    max-width: 75%;
    height: auto;
}

.image-map {
    max-width: 100%;
    height: auto;
}

.image {
    display: inline-block;
    max-width: 75%;
    height: auto;
    margin: auto;
}

.grid2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 5%;
    grid-row-gap: 3%;
}

.grid1 { grid-area: 1 / 1 / 2 / 2; }
.grid2 { grid-area: 1 / 2 / 2 / 3; }
.grid3 { grid-area: 2 / 1 / 3 / 2; }
.grid4 { grid-area: 2 / 2 / 3 / 3; }

th, td {
    text-align: center;
    padding: 10px;
}

thead {
    background-image: linear-gradient(hsl(207, 24%, 67%), hsl(206, 19%, 85%));
}

tfoot {
    background-image: linear-gradient(hsl(206, 19%, 85%), hsl(207, 24%, 67%));
}

.footerhr {
    background-color: hsl(207, 24%, 67%);
    border: none;
    height: 20px;
}

footer {
    height: 50px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    text-align: center;
    gap: 10%;
    padding: 10px;
    padding-bottom: 20px;
    background-color: hsl(206, 19%, 85%);
    font-weight: bold;
}