@charset "utf-8";
/* CSS Document */
body {
  margin: 0px;
  padding: 0px;
  font-family: "Open Sans", sans-serif;
  background-color: var(--primary-color);
}

:root {
  --primary-color: #f5f5f5;
  --secondary-color: #00bfff; /* #2adabc*/
  --text-color: #000000;
  --hover-color: #00ace6; /* #23cdaf*/
  --box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.dark-theme {
  --primary-color: #000118;
  --secondary-color: crimson;
  --text-color: #ffffff;
  --hover-color: #d2042d;
  --box-shadow: rgba(0, 0, 0, 1) 5px 15px 15px;
}

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

hr {
  border: 1px solid var(--secondary-color);
  border-radius: 10px;
  width: 100%;
  text-align: center;
}

.heading {
  font-family: "Poppins", sans-serif, "arial";
  font-weight: 600;
  font-size: 72px;
  color: var(--text-color);
  text-align: center;
}

.heading:hover {
  transition: all 0.4s ease-in-out;
  color: var(--secondary-color);
}

h4 {
  font-family: "Roboto", sans-serif, "arial";
  font-weight: 400;
  font-size: 20px;
  color: var(--text-color);
  line-height: 1.5;
}

input[type="checkbox"] + label {
  color: #ccc;
  font-style: italic;
}

input[type="checkbox"]:checked + label {
  color: #f00;
  font-style: normal;
}