:root {
  --white: #fefefe;
  --black: #0c0c0c;
  --dark-grey: #272521;
  --grey: #576365;
  --green: #51b495;
  --light-green: #b9e4d7;
  --yellow: #dabb06;
}

* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  box-sizing: border-box;
  border: none;
  background: transparent;
}

.content {
  width: 75%;
  margin: auto;
}

body {
  display: flex;
  font-family: "Roboto";
  background: var(--white);
}

header {
  display: flex;
  background-color: var(--black);
  position: fixed;
  height: 75px;
  width: 100%;
  font-size: 22px;
  color: var(--green);
}

header h2 {
  display: inline;
}

header img {
  width: 45px;
  top: 6px;
  position: relative;
}

#header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dark-mode {
  background-color: var(--black);
  color: var(--light-green) !important;
}

#darkmode-button {
  margin: 0;
  padding: 0;
  width: 0;
  background-color: transparent;
  text-decoration: none;
  align-content: center;
}

#call-to-action {
  display: flex;
  position: fixed;
  font-size: 22px;
  margin-top: 75px;
  height: 40px;
  width: 100%;
  justify-content: center;
  align-items: center;
  background-color: var(--dark-grey);
  color: var(--light-green);
}

#call-to-action img {
  width: 40px;
}

main {
  width: 100%;
  margin-top: 175px;
  margin-bottom: 50px;
  font-family: "Roboto";
}

#main-content {
  display: flex;
  align-items: center;
}

#button-group {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}

h1 {
  font-size: 40px;
  font-family: "Poppins";
  padding: 0;
  margin-top: 0;
}

h3 {
  font-size: 30px;
  font-family: "Poppins";
  padding: 0;
  margin-top: 0;
}

hr {
  border: 2px solid var(--green);
  border-radius: 10px;
  width: 75%;
  margin: auto;
}

a {
  color: var(--green);
  text-decoration: none;
}

a:hover {
  color: var(--light-green);
  text-decoration: none;
}

button {
  background-color: var(--green);
  color: var(--white);
  padding: 10px;
  margin-bottom: 10px;
  width: 250px;
  border-radius: 10px;
  font-family: "Roboto";
  font-weight: 800;
  font-size: 16px;
}

button:hover {
  cursor: pointer;
  background-color: var(--yellow);
}

#footerlinks img {
  width: 50px;
}

#footer-logo {
  display: flex;
  align-items: center;
  font-size: 32px;
}

footer {
  display: flex;
  background-color: var(--dark-grey);
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  color: var(--green);
  position: fixed;
  height: 75px;
  width: 100%;
  bottom: 0;
}

footer img {
  width: 40px;
}

#footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.slogan {
  color: var(--yellow) !important;
}

/* RESPONSIVE STYLING */

@media (1410px >= width) {
  .content {
    width: 90%;
    margin: auto;
  }

  header h2 {
    font-size: 24px;
  }

  header img {
    width: 40px;
  }
}

@media (max-width: 850px) {
  footer img {
    width: 25px;
  }

  #footerlinks img {
    width: 25px;
  }

  footer {
    font-size: 10px;
  }

  #footer-logo {
    font-size: 18px;
  }
}
