* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-size: 40px 40px;
    background-image:
      linear-gradient(to right, #EDEDED 1px, transparent 1px),
      linear-gradient(to bottom, #EDEDED 1px, transparent 1px);
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.container {
    max-width: 800px;
    text-align: center;
    animation: fadeIn 1s ease-in-out;
}

.logo-top {
    margin-bottom: 3rem;
    animation: slideDown 0.8s ease-out;
}

.logo-svg {
    width: 295px;
    height: 85px;
  
}


h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 5.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
    animation: slideUp 0.8s ease-out 0.2s both;
}

/* Responsive Styles */

@media (max-width: 768px) {

    h1 {
        line-height: 4.5rem;
    }

}

@media (max-width: 600px) {
    .container {
        padding: 1rem;
    }
    
    h1 {
        margin-bottom: 1.5rem;
    }
    
    .subtitle {
        margin-bottom: 2rem;
    }
    
    .logo-top {
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {

    h1 {
        line-height: 3.5rem;
    }

}



.subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: slideUp 0.8s ease-out 0.4s both;
}

.img-bottom {
    margin-bottom: 2rem;
    animation: slideUp 0.8s ease-out 0.6s both;
}

.img-bottom .logo-svg {
    width: 104px;
    height: 120px;
    animation: slideUp 0.8s ease-out 0.2s both;
}

.tagline {
    font-size: 1.1rem;
    color: #666;
    font-style: italic;
    animation: slideUp 0.8s ease-out 0.8s both;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

