:root {

}

html {
    font-family: "Roboto", sans-serif;
}
.inner {
    width: 1150px;
}
body {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
       flex-direction: column;

           min-height: 100vh;
}
header {
    display: flex;
    justify-content: center;
    background-color: black;
    height: 100px;
    .inner {
        align-items: center;
        display: flex;
        .logo {
            img {
                height: 80px;
            }
        }
        .horizontal {
            text-align: right;
            flex: auto;
            ul , li , li > ul > li {
                list-style: none;
                padding: 0;
                margin: 0;
            }
            a {
                font-weight: 600;
                text-decoration: none;
                color: white;
            }
            > ul {
                > li {
                    position: relative;
                    display: inline-block;
                    padding: 20px;
                }
                > li:hover {
                    padding-bottom: 16px;
                    border-bottom: 4px solid yellow;
                }
 
                > li:hover > a {
                        color: yellow;
                }
            }
            ul > li > ul {
                display: none;
            }
            ul > li:hover > ul {
                position: absolute;
                margin-left: -20px;
                margin-top: 10px;
                display: flow-root;
                text-align: left;
            }
            li > ul > li{
                background-color: rgb(242,242,242);
                display: flow-root;
                padding: 0;
            }
            li > ul > li > a{
                display: inline-block;
                color: black;
                padding: 15px 30px;
                white-space: nowrap;
            }
            li > ul > li:hover{
                background-color: rgb(255,255,0); /* rgb(237,237,237);*/
            }
            li > ul > li:hover .caret{
                color: red;
            }
            
        }
        .burgermenu {
            display: none;
        }
    }
}
main {
   flex: auto;
   display: flex;
   justify-content: center;
   h1 {
    font-size: 2.5rem;
    text-align: center;
    color: #555;
    text-shadow: 0px 0px 4px rgba(187, 187, 187, 0.6);
   }
   h2 {
    font-size: 1.6rem;
    color: #555;
    text-shadow: 0px 0px 4px rgba(187, 187, 187, 0.6);
    margin: 0; 
   }
   p, .list,li {
    font-size: 1.3rem;
    line-height: 1.4;
    text-align: justify;
    text-justify: inter-word;
    color: #777;
    text-shadow: 0px 0px 3px rgba(187, 187, 187, 0.4);
   }
   .spacer {
    width: 100%;
    height: 50px;
    clear: both;
   }
   
   img {
    max-width: 100%;
    float: right;
   }
   .nocaption {
    margin-bottom:4px;
   }
   .nocaption img {
    border: 1px solid #ddd;
    margin-bottom: 0px;
   }
   figure.caption {
    border: 1px solid #ddd;
   }
   figure {
    margin: 15px 25px; /* top+bund left+right */
    margin-top: 5px;
    margin-bottom: 10px;
    width: 33%;
   }
   figcaption {
    max-width: 100%;
    font-size: 0.8rem;
    padding: 5px;
   }
   figure.right {
    float: right;
    margin-right: 0;
   }
   figure.left {
    float: left;
    margin-left: 0;
   }
   .list li {
    margin-bottom: 40px;
   } 
}
footer {
    justify-content: center;
    background-color: black;
        color: #bbb;
    border-top: 4px solid yellow;
    display: flex;
        align-items: center;
    flex-direction: column;
    margin-top: 100px;
    .details {
        display: flex;
        gap: 75px;
        padding-bottom: 75px;
        margin-bottom: 75px;
        border-bottom: 1px solid #888;
        line-height: 1.5;
        h4 {
            color: white;
        }
        ul, li {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        a {
            color: rgba(255, 255, 0, 0.7);
            text-decoration: none;
        }
        a:hover {
            color: rgb(255, 255, 0);
            text-decoration: underline;
        }
    }
    .copyright {
        text-align: center;
        padding: 15px;
    }
}



@media (max-width: 1200px) {
    main {
        padding-left: 20px;
        padding-right: 20px;
    }
}
