/**
 * Base Styles
 * Description: Core CSS for all projects including resets, typography, and layout structures.
 */
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

body {
  font-size: 16px;
  font-family: Helvetica, sans-serif;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 20px;
  line-height: 1.5;
}

p, ul {
  margin-bottom: 20px;
  line-height: 1.5;
}

ul {
  margin-left: 25px;
}

a {
  text-decoration: none;
  color: #4141ce;
}

a:hover {
  text-decoration: underline;
}

section {
  margin-bottom: 50px;
}

pre {
  background-color: #f2f2f2;
  padding-top: 15px;
  margin-bottom: 25px;
}

.p-5 {
  padding: 5px;
}

.pw-5 {
  padding: 0 5px;
}

.ph-5 {
  padding: 5px 0;
}

.p-10 {
  padding: 10px;
}

.pw-10 {
  padding: 0 10px;
}

.ph-10 {
  padding: 10px 0;
}

.p-15 {
  padding: 15px;
}

.pw-15 {
  padding: 0 15px;
}

.ph-15 {
  padding: 15px 0;
}

.p-20 {
  padding: 20px;
}

.pw-20 {
  padding: 0 20px;
}

.ph-20 {
  padding: 20px 0;
}

.p-25 {
  padding: 25px;
}

.pw-25 {
  padding: 0 25px;
}

.ph-25 {
  padding: 25px 0;
}

.p-50 {
  padding: 50px;
}

.pw-50 {
  padding: 0 50px;
}

.ph-50 {
  padding: 50px 0;
}

.p-5i {
  padding: 5px !important;
}

.pw-5i {
  padding: 0 5px !important;
}

.ph-5i {
  padding: 5px 0 !important;
}

.p-10i {
  padding: 10px !important;
}

.pw-10i {
  padding: 0 10px !important;
}

.ph-10i {
  padding: 10px 0 !important;
}

.p-15i {
  padding: 15px !important;
}

.pw-15i {
  padding: 0 15px !important;
}

.ph-15i {
  padding: 15px 0 !important;
}

.p-20i {
  padding: 20px !important;
}

.pw-20i {
  padding: 0 20px !important;
}

.ph-20i {
  padding: 20px 0 !important;
}

.p-25i {
  padding: 25px !important;
}

.pw-25i {
  padding: 0 25px !important;
}

.ph-25i {
  padding: 25px 0 !important;
}

.p-50i {
  padding: 50px !important;
}

.pw-50i {
  padding: 0 50px !important;
}

.ph-50i {
  padding: 50px 0 !important;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-75 {
  margin-bottom: 75px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mb-10i {
  margin-bottom: 10px !important;
}

.mb-20i {
  margin-bottom: 20px !important;
}

.mb-25i {
  margin-bottom: 25px !important;
}

.mb-30i {
  margin-bottom: 30px !important;
}

.mb-40i {
  margin-bottom: 40px !important;
}

.mb-50i {
  margin-bottom: 50px !important;
}

.mb-75i {
  margin-bottom: 75px !important;
}

.mb-100i {
  margin-bottom: 100px !important;
}

/**
 * Global
 * Description: Styles that are used globally across the site.
 */
button#enableSensors {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 999;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.3);
  color: white;
  padding: 10px;
  border: 2px solid white;
  border-radius: 5px;
}

/**
 * Header
 * Description: Styles for the header of the site.
 */
/**
 * Footer
 * Description: Styles for the footer of the site.
 */
/**
 * Home
 * Description: Styles for the home page.
 */

/*# sourceMappingURL=style1.css.map */
