/* Body element */
body {
  background-image: url(/img/bg800bulbs.jpg);
  background-color: white;
  box-sizing: border-box;
  margin: 0em;
  padding: 0em;
  font-family: "PT Sans", serif;
  font-weight: 400;
  font-style: normal;
}

/* Main element */
.main {
  margin: 5em 18em;
  border-radius: 15px;
  background-color: white;
  max-width: 80dvw;
  min-width: 600px;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2), 0 5px 5px 5px rgba(0, 0, 0, 0.2), 0 5px 5px 5px rgba(0, 0, 0, 0.2), 0 5px 5px 5px rgba(0, 0, 0, 0.2);
}

/* Navbar elements */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 5%;
}

.logo {
  cursor: pointer;
}

.nav__links {
  list-style: none;
}

.nav__links li {
  display: inline-block;
  padding: 0px 20px;
  font-size: 1rem;
}

.nav__links li a {
  transition: all 0.3s ease 0s;
}

.nav__links li a:hover {
  color: blueviolet;
}

/* Button elements */
button {
  padding: 9px 25px;
  background-color: rgb(255, 255, 255);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease 0s;
  outline-width: 2px;
  outline-color: rgb(0, 0, 0);
  outline-style: solid;
}

button:hover {
  background-color: rgba(118, 118, 118, 0.8)
}

form {
  margin-left: auto;
  margin-right: auto;
}

/* Header elements */
header {
  margin: 0em 2em;
}

header img {
  height: 300px;
  width: 1152px;
  margin-left: auto;
  margin-right: auto;
}

header p {
  margin-left: auto;
  margin-right: auto;
  font-size: 2rem;
}

h1 {
  text-align: center;
  color: black;
  line-height: 100px;
  margin: 0em;
  font-size: 3rem;
  font-weight: bold;
}

/* article & section elements */
.section {
  zoom: 0.8;
  display: flex;
  flex-flow: row wrap;
}

.section:after {
  clear: both;
}

.section article {
  margin-left: 2em;
  margin-right: 2em;
  text-align: left;
}

.section article h2 {
  font-size: 2rem;
}

.section article p {
  width: 60%;
  font-size: 1.5rem;
  padding-top: 20px;
  display: inline-block;
  vertical-align: top;
}

.section article img {
  padding-top: 20px;
  float: right;
}

/* About us elements */
.about__us {
  margin: 4em;
  border-radius: 15px;
  background-color: #ffa356;
}

.au__header {
  margin-right: 2em;
  margin-left: 2em;
  padding: 2em;
}

.about__us p {
  margin-right: 4em;
  margin-left: 4em;
  margin-bottom: 2em;
}


/* column elements */
.colTwo {
  column-count: 2;
  padding-bottom: 2em;
}

.colThree {
  column-count: 3;
  padding-bottom: 2em;
  column-rule: solid 1px;
}

/* testimonials elements */
.testimonials {
  zoom: 0.8;
  display: flex;
  flex-flow: row wrap;
}

.testimonials:after {
  clear: both;
}

.testimonials .article {
  margin-left: 2em;
  margin-right: 2em;
  text-align: left;
}

.testimonials h2 {
  font-size: 2rem;
}

.testimonials .article p {
  width: 80%;
  font-size: 1.5rem;
  padding-top: 2em;
  display: inline-block;
  vertical-align: top;
}

.testimonials .article img {
  padding-top: 2em;
  padding-right: 2em;
  padding-bottom: 1em;
  float: left;
}

/* Resources elements */
.resources {
  margin: 4em;
  border-radius: 15px;
  background-color: #ffa356;
}

.resources__header {
  margin-right: 2em;
  margin-left: 2em;
  padding: 2em;
}

.col__header {
  margin-right: 4em;
  margin-left: 4em;
  padding-bottom: 2em;
}

.resources p {
  margin-right: 4em;
  margin-left: 4em;
  margin-bottom: 2em;
}

.resources ul {
  margin-right: 4em;
  margin-left: 4em;
  margin-bottom: 2em;
}

/* footer elements */
footer {
  text-align: center;
}

footer h3 {
  margin-bottom: 1em;
}

.footer__links {
  list-style: none;
}

.footer__links li {
  margin-bottom: 1em;
  padding: 0em 2em;
  font-size: 1rem;
}

.footer__links li a {
  transition: all 0.3s ease 0s;
}

.footer__links li a:hover {
  color: blueviolet;
}