* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
img {
    display: block;
}

html body {
    height: 100vh;
    background-image: url(img/bg800bulbs.jpg);
}

.container {
    background-color: white;
    border-radius: 1em;
    max-width: 50vw;
    min-width: 280px;
    margin: 1em 25vw 1em  25vw;
}

body {
    font-family: "Noto Sans", sans-serif;
    font-style: normal;
}

main {
    font-size: small;
    margin: 0 1em 0 1em ;
    line-height: 1.6;
}

h2, h3 {
    margin-top: 1em;
}

p {
    margin-bottom: 1em;
}

.space {
    margin-bottom: 5em;
}

.clr::after {
    clear: both;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1em 1em;
}

.logo {
    display: flex; 
    align-items: center; 
    justify-content: left;
}
.logo img {
    width: 30%;
}

.banner {
    width: 100%;
}

nav li {
    display: flex; 
    align-items: center; 
    justify-content: flex-end;
    list-style: none;
    display: inline;
    padding: 0 0 0 4em;
}

nav li a {
    font-weight: 400;
    font-size: medium;
    font-size: small;
    color: black;
    text-decoration: none;
    transition: all 0.3s ease 0s;
}

nav li a:hover {
    color: #c27825;
}

.main-p {
   min-height: 20em;
   margin-top: 1em;
}
.main-img {
    float: right;
    border-radius: 1em;
    margin: 0 0 1em 1em;
}

article {
    display: flex; 
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    border: 1px solid #b0d1cb;
    border-width:  1px 1px 1px 5px;
    background-color: #f7fffe;
    padding: 1em;
    margin: 2em 0 2em 0;
}

.strong {
    font-weight: 700;
}

article img {
    padding: 5px;
}
.article-text {
    margin-left: 10px;
    flex: 1 1 100px;
}
.button {
    display: flex;
    justify-content: center;
    align-items: center;
}

button {
    padding: 10px 70px;
    background-color: lightgray;
    font-weight: 400;
    color: black;
    border: 1px solid rgb(150, 150, 150);
    border-radius: 20em;
    margin: 4em 0 4em 0;
    cursor: pointer;
    transition: all 0.3s ease 0s;
}

button a {
    text-decoration: none;
    color: black;
}

button:hover {
    background-color: rgba(213, 102, 23, 0.8);
}

form {
    display: flex; 
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    border: 1px solid #b0d1cb;
    border-width:  1px 1px 1px 1px;
    background-color: #f7fffe;
    padding: 1em;
    margin: 2em 1em 2em 1em;
}

form input, textarea {
    width: 100%;
    margin: 0 0 1em 0;
}
form .button {
    width: auto;
    padding: 10px 70px;
    background-color: lightgray;
    font-weight: 700;
    color: black;
    border: 1px solid rgb(150, 150, 150);
    border-radius: 20em;
    margin: 1em 0 1em 0;
    cursor: pointer;
    transition: all 0.3s ease 0s;
}

form .button:hover {
    background-color: rgba(213, 102, 23, 0.8);
}
form .reset {
    width: auto;
    padding: 10px 70px;
    text-decoration: underline;
    fill: none;
    background: transparent;
    font-weight: 700;
    color: black;
    border: none;
    cursor: pointer;
    margin: 1em 0 1em 0;

}

footer {
    background-color: #d56617;
    color: white;
    font-size: small;
    padding: 1em;
    font-weight: 700;
}

@media (max-width: 1200px) {
    nav li {
        display: flex; 
        align-items: center; 
        justify-content: flex-end;
        list-style: none;
        padding: 0 2em 0 0;
    }

    .container {
        max-width: 70vw;
        min-width: 280px;
        margin: 1em 15vw 1em  15vw;
    }
}
@media (max-width: 555px) {

    .container {
        max-width: 90vw;
        min-width: 280px;
        margin: 1em 5vw 1em  5vw;
    }
    .main-img {
        width: 100%;
        border-radius: 1em;
        margin: 0 0 1em 1em;
    }
}