html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  font-variant-ligatures: none;
  -webkit-font-variant-ligatures: none;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    
  --max-content-width: 340px;
}

body.bg {
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  background-size: cover;
  height: 100%;
  height: 100dvh;
  display: flex;
  flex-flow: column;
}

/* HOME START */

.home-container {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
}

.home-container img {
  max-width: var(--max-content-width);
}


/* HOME END */


/* KVKK PAGE START */

.content-container {
  max-width: 90%;
  width: 100%;
  margin: 0 auto;
  font-size: 16px;
}

.content-container h1 {
  font-size: 20px;
  text-align: center;
}

/* KVKK PAGE END */

/* VIEW PAGE START */


.logo-container {
  text-align: center;
  padding: 30px 0px;
  max-width: var(--max-content-width);
  margin: 0 auto;
}

.logo-container img {
  max-width: var(--max-content-width);
  height: auto;
  margin: 0 auto;
}


.view-container {
   height: 100%;
   display: flex;
   flex-direction: column;
   justify-content: space-between;
   gap: 30px;
}

.expiry-warning {
  max-width: var(--max-content-width);
  padding: 10px;
  margin: 0 auto 30px auto;
  border-radius: 8px;
  font-size:14px;
}

.expiry-warning {
  color: #fff;
  text-align: center;
  width: 100%;
  background: var(--button-color);
}

.download-btn {
  color: #fff;
  text-decoration: none;
  text-align: center;
  display: block;
  max-width: var(--max-content-width);
  width: 100%;
  margin: 0 auto;
  background: var(--button-color);
  padding: 20px;
  box-sizing: border-box;
  font-size: 1.8em;
  line-height: normal;
  border-radius: 20px;
  border: 4px solid #fff;
  outline: 4px solid var(--button-color);
}

.download-btn:focus {
  outline: none;
}

/* VIEW PAGE END */
