body {
  --background-color: #fff;
  --text-color: #000;
  --secondary-text-color: #666;
  --shadow-color: rgba(0, 0, 0, 0.6);
  --logo: url("../images/light.png");
  --header-color: #888;
  --contact-background-color: #ddddec;
  --download-button-color: #484;
  --download-button-hover-color: #6a6;
  --download-button-text-color: #fff;
}

body.darkmode {
  --background-color: #323;
  --text-color: #fff;
  --secondary-text-color: #aaa;
  --shadow-color: rgba(255, 255, 255, 0.6);
  --logo: url("../images/dark.png");
  --header-color: #ccc;
  --contact-background-color: #444454;
  --download-button-color: #262;
  --download-button-hover-color: #040;
  --download-button-text-color: #ccc;
}

body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  display: flex;
  flex-direction: column;

  background-color: var(--background-color);
  color: var(--text-color);
}

a {
  text-decoration: none;
}

.limited {
  min-width: 1px;
  max-width: 1000px;
  margin: 0 auto;
}

.row {
  display: flex;
  flex-direction: row;
}

.col {
  display: flex;
  flex-direction: col;
}

.container {
  flex: 1;
  position: relative;
  width: 100%;
  display: flex;
}

.header-container {
  background-color: var(--background-color);
  position: fixed;
  z-index: 100;
  width: 100%;
  max-height: 40px;
}

.header {
  display: flex;
  flex: 1;
  justify-content: flex-end;
}

#title-logo {
  width: 40%;
  position: absolute;
  top: 75px;
  margin-top: 5px;
}

.header > div {
  margin: 10px;
  flex: 0;
  font-size: 14px;
  cursor: pointer;
  color: var(--secondary-text-color);
  text-align: center;
}

.header > div:hover {
  font-weight: bold;
  color: var(--text-color);
}

.main {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  box-shadow: 0 0 5px 0 var(--shadow-color);
}

.main > div {
  flex: 1;
  margin: 20px;
}

.main > canvas {
  position: absolute;
  z-index: -1;
}

#logo-container {
  perspective: 30px;
  display: flex;
  justify-content: center;
}

#logo-inner {
  transition: transform 0.5s;
  -webkit-transition: transform 0.5s;
  box-shadow: 2px 2px 50px rgba(0, 0, 0, 0.4);
}

.logo {
  background-image: var(--logo);
  background-size: cover;
  background-repeat: no-repeat;
  width: calc(968px / 3);
  height: calc(968px / 3);
}

.small-title {
  width: 20%;
}

.main .subtitle {
  margin-top: 84px;
  color: #555;
  font-size: 26px;
  font-style: italic;
  text-shadow: 0px 0px 4px rgba(255, 255, 255, 0.7);
}

.main .body {
  margin: 20px 20px 20px 0px;
  color: #333;
  width: 600px;
  font-style: italic;
  font-weight: bold;
  text-shadow: 0px 0px 4px rgba(255, 255, 255, 0.4);
}

.download-container {
  display: flex;
  justify-content: center;
  width: 600px;
}

.download {
  color: var(--download-button-text-color);
  background: var(--download-button-color);
  padding: 5px 20px;
  border-radius: 10px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px 20px;
}

.download:hover {
  background: var(--download-button-hover-color);
}

.download > div {
  margin: 0 15px;
}

.download > div > div:first-child {
  font-size: 20px;
}

.download > div > div:last-child {
  font-size: 10px;
}

.price {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  font-weight: bold;
  background: rgb(187, 85, 51, 0.7);
  padding: 6px;
  color: white;
  border-radius: 5px;
  margin-left: 70px;
  margin-right: 90px;
}

.price:hover {
  background: rgb(187, 85, 51, 1.0);
}

.price1 {
  font-size: 14px;
}

.price2 {
  font-size: 10px;
}

h2 {
  font-size: 32px;
  font-weight: lighter;
  color: var(--header-color);
  text-align: center;
  border-bottom: 1px solid #aaa;
  margin: 64px 0;
}

.features-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.feature {
  max-width: 300px;
  min-width: 200px;
}

.feature > img {
  align-self: flex-start;
  margin-right: 8px;
}

.feature-title {
  font-weight: bold;
  margin-bottom: 8px;
}

.feature-body {
  margin-bottom: 32px;
  font-size: smaller;
  color: var(--secondary-text-color);
}

.contact {
  box-shadow: 0 0 5px 0 var(--shadow-color);
  background-color: var(--contact-background-color);
  margin-top: 100px;
}

.email {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.email > div {
  display: flex;
  line-height: 32px;
  margin-left: 16px;
  margin-top: 16px;
}

.email a {
  margin: 0 16px 16px 16px;
  color: var(--secondary-text-color);
  font-size: larger;
}

.email a:hover {
  font-weight: bolder;
  text-decoration: underline;
}

.darkmode {
  display: flex;
}

.darkmode > label {
  margin-left: 10px;
  margin-top: -4px;
}

#country {
  width: 20px;
}

#country-list {
  background-color: var(--background-color);
  padding: 4px;
  position: absolute;
  display: none;
  transform: translate(-6px, 0px);
}

#country-list img {
  width: 20px;
  margin: 2px;
}

.show-country-list {
  display: block !important;
}