
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ul, ol {
    list-style: none;
}
body {
    overflow-x: hidden;
}
/**mobile first**/
html, body {
    background: white;
    height: 100%;
    scroll-behavior: smooth;
}
.main-header {
    background: green;
    position: center;
    width: 100%;
    height: 300px;
    box-shadow: 0 0 80px rgba(2,2,2,.5);
    z-index: 1000;
    padding: 0;
    margin: 0;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.main-header > nav {
    display: block;
    padding: .25em;
}

.main-menu {
    width: 100%;
    display: block;
    align-items: center;
    gap: 1em;
    top: .25em;
    text-align: center;
    justify-content: space-between;
}
.main-menu a {
    text-decoration: none;
    font-weight: bold;
    font-size: .5em;
    text-transform: uppercase;
    border-bottom: 3px solid transparent;
    padding-bottom: 10px;
    padding-top: 5px;
    margin-bottom: 5px;
    margin-top: 5px;
    display: block;
    text-align: center;
    align-items: center;
    justify-content: center;
    gap: 2em;
    color: lawngreen;
}
.main-menu a:hover {
    color: orange;
    border-bottom-color: orange;
}
.menu-toggle {
    display: block;
}
.logo img {
    width: 280px;
    height: 110px;
    text-align: center;
    align-items: center;
    justify-content: center;
    padding-top: 2em;
    margin: 1em;

}
.dropbtn {
    background-color: green;
    color: lawngreen;
    padding: 0;
    margin: 2em;
    font-size: .8em;
    border: none;
    cursor: pointer;
    font-family: Arial, sans-serif;
    text-decoration: none;
    font-weight: bolder;
    text-transform: uppercase;
    display: block;
}
.dropdown {
    position: relative;
    display: inline-block;
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: limegreen;
    min-width: 200px;
    z-index: 1;
}
.dropdown-content a {
    background: orange;
    color: black;
    padding: .5em;
    margin: .5em;
    text-decoration: none;
    display: block;
}
.dropdown-content a:hover {background-color: #f1f1f1}
.dropdown:hover .dropdown-content {
    display: block;
}
.dropdown:hover .dropbtn {
    background-color: green;
}
.hero {
    background: white center top no-repeat;
    background-size: cover;
    width: 1200px;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    text-align: center;
    align-items: center;
    color: black;
    padding-top: 15em;
    margin: 8em;
}
.hero h2 {
    font-size: 3em;
    text-transform: unset;
    font-weight: bold;
    font-style: oblique;
    text-align: center;
    align-items: center;
    justify-content: center;
    padding: 1em;
    margin: 1em;
}
.hero h3 {
    font-size: 2.5em;
    text-transform: unset;
    font-weight: bold;
    font-style: italic;
    text-align: center;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 1em;
}
.hero img {
    width: 200px;
    height: 170px;
}
.block {
    width: 100%;
    height: 80px;
    padding: .25em;
    margin: 0;
    text-align: center;
    align-items: center;
    justify-content: space-between;
}
.block > h2 {
    color: black;
    text-transform: unset;
    font-weight: bold;
    font-style: italic;
    font-size: 1.5em;
    padding: 0;
    margin: 0;
    text-align: center;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 100px rgba(2,2,2,.3);
}


.colophon {
    width: 100%;
    height: 500px;
    background: black;
}
.colophon h2 {
    color: orange;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1em;
    padding: 3em;
    margin: 1em;
    text-align: left;
    justify-content: center;
    align-items: center;
}
.colophon > h3 {
    color: orange;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1em;
    padding: 3em;
    margin: 1em;
    text-align: left;
    justify-content: center;
    align-items: center;
}
.colophon a {
    color: orange;
    text-decoration: none;
}
.colophon a:hover {
    color: red;
}
}
}