* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.logo {
  max-width: 10vw;
}
body {
  background-image: url(img/bg800bulbs.jpg);
}

header {
  background-color: white;
  display: flex;
  justify-content: space-between;
  padding: 1rem;
  align-items: center;
  max-height: fit-content;
}

nav a {
  text-decoration: none;
  margin-right: 1rem;
}

main {
  background-color: white;
}

.wrapper {
  max-width: 50vw;
  margin-left: auto;
  margin-right: auto;
}

.hero {
  border-top: solid gray;
  border-bottom: solid gray;}

main {
  padding: 1.5rem;
}
main img {
  max-width: 45vw;
}

h2 {
  padding-top: 1rem;
  border-bottom: solid gray;
  font-weight: bold;
  margin-bottom: 1rem;
}

.solution,
.person {
  overflow: auto;
  clear: both;
}

.float-right {
  float: right;
  margin-left: 1rem;
  margin-bottom: 1rem;
  border-radius: 0.7rem;
}

.person {
  border: solid lightblue;
  border-width: 0.1rem 0.1rem 0.1rem 0.7rem;
  margin-bottom: 2rem;
}

.float-left {
  float: left;
  margin-left: 1rem;
  margin-bottom: 1rem;
  padding-right: 1rem;
}

.btt {
  margin-top: 1rem;
  color: black;
  border: solid gray;
  justify-content: center;
  max-width: fit-content;
  padding: 0.3rem 3rem 0.3rem 3rem;
  background-color: lavender;
  display: flex;
  margin-left: auto;
  margin-right: auto;
  border-radius: 1rem;
  cursor: pointer;
}

.bold-text {
  font-weight: bold;
}

a {
  text-decoration: none;
}

#contact {
  background-color: white;
  padding: 1rem;
}

form {
  background-color: rgb(150, 182, 193);
  border: solid rgb(150, 182, 193);
  border-width: 0rem 1rem 0rem 1rem;
}

input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
  width: 100%;
  padding: 0.7rem;
  border: 0.1rem solid #ccc;
  border-radius: 0.3rem;
  box-sizing: border-box;
  margin-top: 0.4rem;
  margin-bottom: 1rem;
  resize: vertical;
}

textarea {
  height: 25rem;
}

.radio-reset-submit {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.break {
  flex-basis: 100%;
  height: 2rem;
}

input[type="radio"] {
  margin-right: 1rem;
  margin-left: 1rem;
}

button[type="submit"],
input[type="reset"] {
  background-color: whitesmoke;
  color: black;
  border: solid black;
  cursor: pointer;
  padding: 0.3rem 3rem 0.3rem 3rem;
  width: fit-content;
  margin-left: 1rem;
  margin-right: 1rem;
}

input[type="reset"] {
  padding: 0.3rem 1.5rem 0.3rem 1.5rem;
}

input[type="reset"]:hover,
button[type="submit"]:hover,
nav a:hover,
.btt:hover {
  background-color: yellow;
}

footer {
  background-color: #ff8c00;
  color: 0073FF;
  padding: 1rem;
  font-weight: bold;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (width < 1200px) {
  body {
    font-size: small;
  }

  .wrapper {
    max-width: 100vw;
  }

  h2 {
    font-size: large;
  }

  .hero {
    border-top: solid gray;
    border-bottom: solid gray;
    width: 100vw;
  }  


  .radio-reset-submit {
    display: grid;
    gap: 1em;
  }


}
