body {
  --background-color: #fff6f6;
  --text-color: #123456;
  --secondary-text-color: #666;
  --header-color: #888;
  --download-button-color: #484;
  --download-button-hover-color: #6a6;
  --download-button-text-color: #fff;
  --purchase-button-color: #448;
  --purchase-button-hover-color: #66a;
}

body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  display: flex;
  flex-direction: column;

  background-color: var(--background-color);
  color: var(--text-color);
}

a {
  color: var(--secondary-text-color);
  text-decoration: none;
  font-weight: bold;
  font-style: normal;
}

a:hover {
  color: var(--text-color);
  text-decoration: underline;
}

.row {
  display: flex;
  flex-direction: row;
}

.col {
  display: flex;
  flex-direction: column;
}

.limited {
  min-width: 1px;
  max-width: 1000px;
  margin: 0 auto;
}

.banner {
  background-image: url("../images/background.jpg");
  width: 100%;
  height: 300px;
  display: flex;
  margin-top: 40px;
}

#title-logo {
  width: 60%;
  position: absolute;
  top: 75px;
  margin-top: 5px;
}

.screenshot {
  align-self: center;
  margin-left: 48px;
}

.container {
  flex: 1;
  position: relative;
  width: 100%;
  display: flex;
}

.header-container {
  background-color: var(--background-color);
  position: fixed;
  z-index: 100;
  width: 100%;
  height: 40px;
  border-bottom: 1px solid #aaa;
}

.header {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: flex-end;
}

.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);
}

h2 {
  margin-top: 40px;
  font-size: 32px;
  font-weight: lighter;
  color: var(--header-color);
  text-align: center;
  border-bottom: 1px solid #aaa;
  width: 1000px;
}

.centered {
  justify-content: center;
}

.main > div {
  flex: 1;
  margin: 20px;
}

.main > canvas {
  position: absolute;
  z-index: -1;
}

#logo-container {
  perspective: 30px;
  display: flex;
  justify-content: center;
}

.small-title {
  width: 20%;
}

.banner > div {
  flex: 1;
}

.banner .subtitle {
  margin: 145px 0 0 10px;
  color: #ddc;
  font-size: 26px;
  font-style: italic;
  text-shadow: 0px 0px 4px rgba(255, 255, 255, 0.7);
}

.banner .description {
  margin: 10px 0 0 15px;
  color: #ccc;
  width: 600px;
  font-style: italic;
  font-weight: bold;
  text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.4);
}

.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;
  cursor: pointer;
  min-width: 200px;
  min-height: 58px;
  font-weight: bold;
}

.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;
}

.download span {
  color: #ccc;
}

.purchase {
  background: var(--purchase-button-color);
}

.purchase:hover {
  background: var(--purchase-button-hover-color);
}

.purchase-button:hover {
  text-decoration: none !important;
}

.download-buttons {
  align-items: center;
  margin-bottom: 10px;
  display: none;
}

.download-buttons a:hover {
  text-decoration: none !important;
}

.virustotal-link {
  font-size: large;
  margin-bottom: 4px;
}

.version-title {
  font-size: smaller;
  color: var(--secondary-text-color);
}

.version-number {
  font-size: xxx-large;
  font-weight: bold;
  border-bottom: 1px solid var(--header-color);
  margin-right: 32px;
  margin-bottom: 8px;
}

#linux-note {
  display: none;
}

.disclamer {
  font-size: small;
  font-style: italic;
  color: var(--secondary-text-color);
  max-width: 540px;
  margin-left: 20px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
}

.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 {
  background-image: url("../images/background.jpg");
  width: 100%;
  margin-top: 100px;
  min-height: 50px;
}

.email {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

.email > div {
  display: flex;
  line-height: 32px;
  margin: 0 16px;
}

.email a {
  color: var(--background-color);
}

.button {
  appearance: none;
  background-color: #FAFBFC;
  border: 1px solid rgba(27, 31, 35, 0.15);
  border-radius: 6px;
  box-shadow: rgba(27, 31, 35, 0.04) 0 1px 0, rgba(255, 255, 255, 0.25) 0 1px 0 inset;
  box-sizing: border-box;
  color: #24292E;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  list-style: none;
  padding: 6px 16px;
  position: relative;
  transition: background-color 0.2s cubic-bezier(0.3, 0, 0.5, 1);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: middle;
  white-space: nowrap;
  word-wrap: break-word;
  margin: 0 16px;
}

.button:hover {
  background-color: #F3F4F6;
  text-decoration: none;
  transition-duration: 0.1s;
}

.button:disabled {
  background-color: #FAFBFC;
  border-color: rgba(27, 31, 35, 0.15);
  color: #959DA5;
  cursor: default;
  pointer-events: none;
}

.button:active {
  background-color: #EDEFF2;
  box-shadow: rgba(225, 228, 232, 0.2) 0 1px 0 inset;
  transition: none 0s;
}

.button:focus {
  outline: 1px transparent;
}

.carousel {
  position: relative;
  top: 50px;
  left: 50px;
  width: 300px;
  height: 200px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.carousel .slides {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.carousel .slides img {
  position: absolute;
  width: 50px;
  height: 50px;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(0);
  transition: all 0.5s ease-in-out;
  transition-delay: 500ms;
}

.carousel .slides > img[data-active] {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0ms;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.carousel .container-dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 10;
}

.carousel .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 3px solid #f1f1f1;
  margin: 0 4px;
  background: #f1f1f1;
  cursor: pointer;
  transition: background-color 500ms ease-in-out;
}

.carousel .dot:hover {
  opacity: 0.9;
  background: rgb(32, 32, 32);
}

.carousel .dot[data-active="true"] {
  background: rgb(32, 32, 32);
}

#overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

#fullscreenImage {
  border-radius: 20px;
  border: 3px solid #f1f1f1;
}
