  .ana{
    min-height: 100%;
    display: flex;
    flex-direction: column;
  }
  .icerik {
    padding-top: 70px; /*Menü kadar boşluk bırakmak*/
    font-family: 'Bahnschrift Condensed';
    text-align: center;
    flex: 1;
  }
  body{
    background-image:url(./img/bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center; 
    height: 100vh;
    margin: 0;
}
  .icerik h1{
    text-align: center;
    font-size: 1500%;
    color: #3f2d91;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);  /* Safari desteği */
    padding: 20px 40px;
    display: inline-block;
  }
  .back-to-main-menu {
    position: fixed;
    bottom: 20px;
    left: 0px;
    background-color: rgba(205, 118, 118, 0.3);
    color: rgba(255,255,255,0.1);
    padding: 10px 15px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s ease, color 0.3s ease;
    display: inline-flex;
    align-items: center;
    overflow: hidden;
    margin: 0px 50px;
    font-family: 'Bahnschrift Condensed';
  }
  
  .back-to-main-menu img {
    display: block;
    opacity: 0.3;
  }
  
  .back-to-main-menu .label {
    opacity: 0;
    width: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: opacity 0.3s ease, width 0.3s ease;
  }
  
  .back-to-main-menu:hover {
    background-color: #ff0000;
    color: #ffffff;
  }
  
  .back-to-main-menu:hover .label {
    opacity: 1;
    width: auto;
  }
  .back-to-main-menu:hover img {
    opacity: 1;
    transition: opacity 0.3s ease
  }