html, body {
  margin: 0 auto;
  font-family: 'Roboto', sans-serif;
  height: 100%;
  background: #EEEEF4;
  font-weight: 100;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

main {
  height: 100%;
  display: -webkit-box;
  display: flex;
  margin: 0 20px;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
}
main h1 {
  font-size: 3em;
  font-weight: 100;
  color: #F44;
  margin: 0;
}
main h2 {
  font-size: 1.5em;
  font-weight: 100;
  margin-bottom: 0;
}
main h3 {
  font-size: 1.5em;

  font-weight: 100;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  max-width: 90%;   /* Yazıyı ekran genişliğine göre sınırla */
  word-wrap: break-word; /* Uzun kelimeleri bölerek taşmayı engelle */
  text-align: center;    /* Mobilde de ortalı kalsın */
}

main a {
  font-size: 1.5em;
  font-weight: 300;
  color: #F44;
  text-decoration: none;
}

.logo {
  max-width: 600px;   /* Masaüstünde en fazla 600px */
  width: 100%;        /* Küçük ekranlarda orantılı küçülür */
  height: auto;       /* Oranları korur */
  display: block;     
  margin: 0 auto;     /* Ortada tutar */
}







footer {
  position: absolute;
  bottom: 0;
  margin: 10px;
  font-weight: 300;
}






@media (max-width: 600px) {
  .logo {
    max-width: 100%;   /* Tam genişlik */
    width: 100vw;      /* Görünür ekran genişliği kadar */
    height: auto;      /* Oran korunsun */
  }

  main h3 {
    font-size: 1.1em;  /* Daha küçük ekranlarda font küçülür */
    max-width: 95%;    /* Yazı kenarlara daha az yapışır */
  }
}
