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

h1,
h2,
h3,
h4,
h5,
p,
a,
footer,
header {
  font-family: sans-serif;
  /* color: #444; */
  color: rgb(207, 207, 207);
}

.sticky-header {
  position: fixed;
  height: 120px;
  width: 80%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

body {
  background-color: rgb(36, 36, 36); /*#121212 is a good dark theme*/
}

.container {
  width: 1500px;
  margin: 0 auto;
}

h1 {
  font-size: 43px;
  text-align: center;
  text-transform: uppercase;
  padding: 20px;
}

h2 {
  font-size: 35px;
  padding: 20px;
}

p {
  font-size: 20px;
}

.RaidersLogo {
  margin-top: 120px;
}

.about-team {
  margin: 40px;
  display: inline-block;
}

.bottomparagraph {
  border: rgb(248, 83, 83);
}

ul {
  list-style: none;
}

a:link,
a:visited {
  font-size: 20px;
  color: rgb(248, 83, 83);
  text-decoration: none;
}

a:active {
  font-style: italic;
}

a:hover {
  /* font-weight: bold; */
  text-decoration: underline orangered;
  color: orangered;
}

header {
  background-color: #121212;
  /* background-color: #e9e9e9; */
  border-top: 5px solid rgb(248, 83, 83);
  border-bottom: 5px solid rgb(248, 83, 83);
  width: 1500px;
  margin: auto;
}

.Extra {
  background-color: #121212;
  border-top: 5px solid rgb(248, 83, 83);
  border-bottom: 5px solid rgb(248, 83, 83);
  width: 1500px;
  margin: 0 auto;
}

.our-robot {
  border-bottom: 5px solid rgb(248, 83, 83);
  font-size: 30px;
  text-align: center;
  display: block;
  text-transform: uppercase;
  padding-bottom: 20px;
}

li p {
  font-size: 15px;
}

.indent {
  /* margin-left: 550px; */
  margin-left: 30%;
}

.ftcIndent {
  margin-left: 20px;
}

.backIndent {
  margin-left: 35%;
}

/* .indent:last-child {
  margin: 0 20px;
} */

footer {
  font-size: 15px;
}

.light-mode {
  background-color: white;
}

.light-mode * {
  background-color: white;
}

.light-mode p,
h1,
h2,
h3,
h4,
h5,
footer {
  color: black;
}

#checkbox {
  position: fixed;
  top: 20px;
  right: 20px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  width: 80px;
  height: 40px;
  background: rgb(248, 83, 83);
  border-radius: 22px;
  cursor: pointer;
  outline: none;
}
/* styling the circle inside the checkbox input */
#checkbox::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 35px;
  background-color: white;
  border-radius: 35px;
  top: 2px;
  left: 2px;
  cursor: pointer;
  transition: 0.3s linear;
}

#checkbox:checked + .container {
  background: rgb(19, 18, 18);
  color: white;
}

#checkbox:checked {
  /* background: rgb(12, 177, 81); */
  background: black;
}

h1,
h2,
h3,
h4,
footer {
  color: rgb(207, 207, 207);
  padding: 20px;
}
/* div {
  display: flex;
  justify-content: center;
} */

/*Priorty to conflicting declarations go to !important (use as last resort), inline (shouldn't use),
IDs (#), pseudo-class's (. or :), elements (p, div, li, etc), universal selector (*).*/
