
html {
  scroll-behavior: smooth;
}


body {
  padding: 0 0 0 0;
  margin: 0 0 0 0;
  background-color: #FFFCF4;
  color: #1C1C17;
  font-size: 20px;
  overflow-x: hidden;
}


a {
  color: #018A53;
}

.feature {
  box-sizing: border-box;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}

.feature div {
  padding-left: 40px;
  padding-right: 40px;
}

#title-section-inner {
  margin-top: 10%;
  margin-bottom: 10%;
  height: 80%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

#title-section div {
  padding-left: 0px;
  padding-right: 0px;
}

#title-nav {
  display: flex;
  flex-direction: row;
  font-size: 32px;
  gap: 40px;
  justify-content: flex-end;
  align-self: flex-end;
  margin-right: 60px;
  margin-top: 26px;
}

#title-nav * {
  color: #818180;
}

#title-nav a:hover {
  color: black;
}


#title {
  display: flex;
  flex-direction: row;
  justify-content: center;
  font-size: 60px;
  margin-left: 0px;
  padding-left: 0px;
}


#title-description {
  margin-top: 40px;
  width: 100%;
  text-align: center;
  font-size: 24px;
}

#title-icon {
  width: 80px;
  height: 80px;
  margin-top: 10px;
  margin-right: 20px;
}

#app-buttons {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

#scroll-down {
  font-size: 18px;
  color: grey;
  align-self: center;
  margin-bottom: 40px;
}

button {
  border: none;
  text-decoration: none;
  border-radius: 20px;
}

.primary-button {
  background-color: #006D41;
  color: #FFFFFF;
  border: none;
  text-decoration: none;
  border-radius: 24px;
}

.primary-button:hover {
  background-color: #018A53;
}

.secondary-button {
  background-color: #FFFCF4;
  color: #006D41;
  border: 2px solid #006D41;
  text-decoration: none;
  border-radius: 24px;
}

.secondary-button:hover {
  background-color: #D7FFD1;
}

#app-buttons a {
  margin-left: 20px;
  margin-right: 20px;
  font-size: 20px;
  padding: 10px 20px 10px 20px;
}

#feature-crossplatform {
  background-color: #DDE5DC;
  color: #404942;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
}

#crossplatform-desc {
  max-height: 20%;
  padding: 20px 20px 20px 20px;
}

.screenshot {
  max-width: 80%;
  max-height: 70%;
  margin: 40px 40px 40px 40px;
}

.shadow {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}


#feature-sort {
  background-color: #d1d2d2;
}


#feature-recommend {
  background-color: #EEE0Cf;
  color:  #4E4639;
}

#screenshot-recommendation {
  width: 80%;
  max-width: 800px;
}

#feature-search {
  background-color: #EBE3DB;
  color: #1F1C05;
}

#feature-filter-folder {
  background-color: #E0E2EC;
  color: #44474F;
}

#download {
}

#discount {
  color: red;
  font-size: 26px;
}

#alpha-desc {
  color: grey;
  font-size: 16px;
}

#download-links {
  height: 20%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: start;
  width: 100%;
}

#download-links div {
  width: 30%;
}

del {
  color: grey;
}

.download-img {
  width: 90%;
  max-width: 200px;
  margin-top: 20px;
  margin-bottom: 20px;
}

#web-links {
  width: 100%;
}

#web-button2 {
  font-size: 34px;
  padding-left: 20px;
  padding-right: 20px;
  width: 90%;
}


#browser-button {
  background-color: black;
  color: #FFFFFF;
  border: none;
  text-decoration: none;
  border-radius: 10px;
  font-size: 30px;
  height: 9vh;
  padding-left: 20px;
  padding-right: 20px;
}

#hint {
  color: #1C1C17;
  font-size: 16px;
  margin-right: 4px;
}

#download-android {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#contact {
  font-size: 18px;
  color: #1C1C17;
}


@media only screen and (max-width: 600px) {
  #title  {
    font-size: 50px !important;
  }

  #title-icon {
    width: 60px !important;
    height: 60px !important;
    margin-top: 0px !important;
    margin-right: 20px !important;
  }

  #title-description {
    font-size: 20px !important;
  }

  #download-links {
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
  }


  #download-links div {
    width: 80%;
  }
}

.blink_me {
  animation: blinker 1.5s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0.2;
  }
}
