@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
* {
    font-family: "Poppins", sans-serif;
  }
.loading {
    font-family: "Poppins", sans-serif;
    left: 50%;
    top: 10%;
    font-size: 50px;
    font-weight: bold;
    letter-spacing: 4.4px;
    text-transform: capitalize;
    position: absolute;
    overflow: hidden;
    transform: translate(-50%, -60%);
    
    &:before {
        color: #aaa;
        content: attr(data-loading-text);
    }
    
    &:after {
        top: 0;
        left: 0;
        width: 0;
        opacity: 1;
        color: #444;
        overflow: hidden;
        position: absolute;
        white-space: nowrap;
        content: attr(data-loading-text);
        animation: loading 5s infinite;
    }
    
    
}
@keyframes loading {
    0% { 
      width: 0; 
    }
    100% {
      width: 100%; 
    }
  }

.container{
    background-image: url(./assets/comingsoonbg.jpg);
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat; 
    position: absolute;
    bottom: 0;
    top: 0;
    right: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo{
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}
.logo img{
    opacity: 1;
}
.content{
    align-items: center;
    margin: 2rem;
    padding: 2rem 2.5rem;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.457);
    box-shadow: rgba(17, 17, 26, 0.1) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 48px;

}
.content  h1{
    margin-top: 1.5rem;
    font-size: 60px;
    color: #fff;
    font-weight: 600;
    text-align: center;
}
.content  h2{
    font-size: 40px;
    color: #fff;
    font-weight: 600;
    text-align: center;
}
.content h3 {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    text-align: center;
    margin-bottom: 2rem;
  }
  

  .input-box {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 100%;
    margin-top: 20px;
    column-gap: 20px;
  }
  .input-box a {
    height: 100%;
    outline: none;
    border: none;
    border: 1px solid #fff;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.2);
    font-weight: 400;
    display: flex;
    align-items: center;
    text-decoration: none;
  }
  .input-box p {
    color: #fff !important;
  }
  .input-box a {
    cursor: pointer;
    background-color: #eee;
    color: #0d6a81;
    white-space: nowrap;
    padding: 0 20px;
    transition: all 0.3s ease;
  }
  .input-box a:hover {
    background-color: #fff;
  }

  /* Tablet cihazlar (768px ve altı) */
@media (max-width: 900px) {
    body {
        font-size: 14px; /* Tablet için daha küçük font boyutu */
    }
    .container {
        padding: 1rem;
    }
    .content h1 {
        font-size: 40px; /* Daha küçük başlık boyutu */
    }
    .content h2 {
        font-size: 28px;
    }
    .content {
        margin: 1rem;
        padding: 1.5rem;
    }
    .logo img {
        width: 250px; /* Tablet için logo boyutu ayarı */
    }
    .loading {
        left: 50%;
        top: 15%;
        font-size: 30px;
        font-weight: bold;
        letter-spacing: 1px;
        text-transform: capitalize;
        position: absolute;
        overflow: hidden;
        transform: translate(-50%, -60%);
        
        &:before {
            color: #aaa;
            content: attr(data-loading-text);
        }
        
        &:after {
            top: 0;
            left: 0;
            width: 0;
            opacity: 1;
            color: #444;
            overflow: hidden;
            position: absolute;
            white-space: nowrap;
            content: attr(data-loading-text);
            animation: loading 5s infinite;
        }
    }
}

/* Mobil cihazlar (480px ve altı) */
@media (max-width: 480px) {
    body {
        font-size: 12px; /* Mobil için daha küçük font boyutu */
    }
    .container {
        padding: 0.5rem;
    }
    .content h1 {
        font-size: 28px; /* Mobil için küçük başlık boyutu */
    }
    .content h2 {
        font-size: 20px;
    }
    .content {
        margin: 0.5rem;
        padding: 1rem;
    }
    .logo img {
        width: 200px; /* Mobil için logo boyutu ayarı */
    }
    .loading {
        left: 50%;
        top: 10%;
        font-size: 20px;
        font-weight: bold;
        letter-spacing: 1px;
        text-transform: capitalize;
        position: absolute;
        overflow: hidden;
        transform: translate(-50%, -60%);
        
        &:before {
            color: #aaa;
            content: attr(data-loading-text);
        }
        
        &:after {
            top: 0;
            left: 0;
            width: 0;
            opacity: 1;
            color: #444;
            overflow: hidden;
            position: absolute;
            white-space: nowrap;
            content: attr(data-loading-text);
            animation: loading 5s infinite;
        }
    }
}