body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    font-size: 16px; /* Varsayılan font boyutu */
  }

  header {
    width: 100%;
    background: linear-gradient(to right, #e043a9, #550437);
    color: #fff;
    text-align: center;
    padding: 15px;
    box-sizing: border-box;
  }

  .site-name {
    font-size: 24px;
    margin: 0;
  }

  .button-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    padding: 20px;
    box-sizing: border-box;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    background: linear-gradient(to right, #d5acc1, #dcc5c1);
    border-radius: 10px;
    overflow: hidden;
  }

  .button-container:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, #c6ce55, #520338);
    transform: translateX(-50%);
  }

  .button-container h2 {
    font-size: 20px;
    margin: 10px 0;
    color: #3c3c8e;
    text-align: center;
  }

  .gradient-button {
    margin-top: 20px;
    display: inline-block;
    padding: 15px 30px;
    font-size: 19px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    border: none;
    border-radius: 30px; /* Oval şekil için border yarıçapı */
    text-align: center;
    background: linear-gradient(to right, #FFD700, #FF6347);
    transition: background 0.3s ease-in-out, box-shadow 0.3s ease-in-out; /* Geçiş efektleri */
    width: 265px;
    height: 60px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1), 0 4px 8px rgba(0, 0, 0, 0.2) inset; /* Dışa çıkma ve içe basıklık için gölgelendirme */
}

.gradient-button:hover {
    background: linear-gradient(to right, #b73193, #4f0730);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1), 0 6px 12px rgba(0, 0, 0, 0.2) inset; /* Dışa çıkma ve içe basıklık için gölgelendirme */
}

  .content {
    margin-top: 20px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 80%;
    box-sizing: border-box;
    text-align: justify;
    min-height: 200px;
    margin-bottom: 20px;
    font-size: 19px; 
    line-height: 1.5; 
    padding-left: 20px; 
    padding-right: 20px; 
}

@media only screen and (max-width: 768px) {
    .content {
        width: 100%;
    }
}
  footer {
    width: 100%;
    background: linear-gradient(to right, #470523, #dfd54f);
    color: #fff;
    text-align: center;
    padding: 15px;
    box-sizing: border-box;
    margin-top: auto;
  }

  .footer-links {
    display: flex;
    justify-content: center;
    margin-top: 10px;
  }

  .footer-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-size: 16px;
  }

  .footer-description {
    margin-top: 10px;
    font-size: 14px;
  }
  img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: block;
    margin: 0 auto;
  }
  section {max-width:800px; margin-left:auto; margin-right:auto;text-align:left;}
  
  a {
    color: white; /* Link rengi */
    text-decoration: none; /* Link altını çizmeyi kaldırır */
    transition: color 0.3s; /* Rengin yumuşak bir geçişle değişmesini sağlar */
  }
  
  a:hover {
    color: #ffcc00; /* Üzerine gelindiğindeki renk (koyu sarı) */
  }
  .container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.box {
    width: 30%;
    background-color: #f0f0f0;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
}

@media screen and (max-width: 600px) {
    .container {
        flex-direction: column;
    }

    .box {
        width: 100%;
    }
}
.otherButtons {
  color: white;
  font-weight: 700;
  text-decoration: none;
  padding: 1.3rem 1.5rem 1.1rem 1.5rem;
  text-shadow: 0 1px 2px #0000004d;
  border-bottom: 3px solid #411f00c4;
  background: linear-gradient(0deg, #bf5d00, #ff990f);
  min-width: 205px;
  margin: 0.4rem 0.5rem;
  border-radius: 1rem;
  font-size: 1.2rem;
  box-shadow: 0 3px 5px #3717093b;
  text-transform: uppercase;
  display: inline-block;
}
.otherButtons:hover {
  text-decoration: none;
  border-bottom: 3px solid #823e00c4;
  background: linear-gradient(0deg, #cc6300, #f4920e);
}
.buttonsArea {
  max-width: 900px;
  margin: 0 0 2rem 0;
  display: inline-block;
}
