* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

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

body {
  background-image: url(assets/img/bg800bulbs.jpg);
  background-attachment: fixed;
}

header {
  background-color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  padding: 2rem;
  border-radius: 10px 10px 0px 0px;
}

section {
  margin: 1rem;
}

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

.btn {
  background-color: #fff;
  font-size: 12px;
  font-weight: 500;
  text-transform: none;
  color: black;
  padding: 10px 20px;
  border-radius: 5000px;
  transition: all 0.3s;
}

.btn:hover {
  transform: scale(1.15);
}

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

.heroimage {
  width: 100%;
}

h1 {
  font-size: 1.5rem;
  line-height: 2.5;
}

h2 {
  font-size: 1.5rem;
  line-height: 2;
}

p {
  line-height: 1.5rem;
  margin: 2rem;
}

main {
  background-color: white;
  padding: 1rem;
}

.wrapper {
  max-width: 85ch;
  margin-top: 2rem;
  margin-bottom: 8rem;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 10px 10px 20px black;
}

.floatright {
  float: right;
  margin-left: 2rem;
  margin-bottom: 10px;
  border-radius: 30%;
}

.btt:link,
.btt:visited,
.btt:active {
  color: rgb(106, 38, 49);
}

.btt:hover {
  background-color: rgb(134, 196, 134);
  color: black;
}

footer {
  background-color: bisque;
  padding: 2rem;
  margin-bottom: 2rem;
  border-radius: 0px 0px 10px 10px;
  text-align: center;
}



a:link {
  color: #7456af;
}

footer p {
  font-size: 1rem;
}

.btt {
  background-color: burlywood;
  padding: 1rem;
  border-radius: 16px;
  display: block;
  width: 30%;
  text-align: center;
  text-decoration: none;
  margin: 1rem;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0px 0px 10px rgb(87, 86, 86);
}

.divider {
  clear: both;
  height: 1rem;
}

.logo {
  height: 3rem;
}

input {
  background-color: beige;
  width: 100%;
  font-size: 16px;
  padding: 1rem;
  border-radius: 10px;
  border-color: black;
  margin-bottom: 20px;
}

#testimonials {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.testminonial {
  display: flex;
  text-align: center;
  gap: 1rem;
  background-color: #eefff8;
  padding: 1rem;
  border: 8px solid #bec9bf;
  border-left: 8px solid #bec9bf;
}

cite {
  font-weight: bold;
  font-family: sans-serif;
}

#contact-form {
  text-align: center;
  margin-bottom: 1.5rem;
}

.form-inputs {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  width: 50%;
}

textarea {
  background-color: beige;
  padding: 1rem;
  border-radius: 10px;
  border-color: black;
  margin-bottom: 25px;
  font-family: "Roboto", sans-serif;
}

input:focus-within {
  outline: none;
  border-color: aqua;
  border-width: 3px;
}

textarea:focus-within {
  outline: none;
  border-color: aquamarine;
  border-width: 3px;
}

button {
  background-color: burlywood;
  border-radius: 20px;
  border-color: black;
  font-size: 22px;
  padding: 10px 18px;
  text-align: center;
  display: inline-block;
  margin: 0 auto;
  width: 100%;
}

button:hover {
  background-color: #5bd183;
  opacity: 80%;
  cursor: pointer;
}

@media screen and (min-width: 35em),
print and (min-heigth: 40em) {
  #section_navigation {
    float: left;
    width: 10em;
  }
}