@charset "UTF-8";

html {
  scroll-behavior:auto;
}

@media (max-width: 767px) {

}

@media (max-width: 767px) {

}


html, body, p, a, h1, h2, h3, h4, h5, h6, blockquote, .btn, .form-control {
  font-family: "Impact", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* line-height: 1.65; */
}


/* 1. Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* Layout */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    
    /* Typography */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    text-align: center;
    padding: 20px;
}

/* 2. Image Styling */
img {
    max-width: 100%;
    height: auto;
    width: 280px; /* Adjust this to fit your logo preference */
    margin-bottom: 2rem;
    /* Smooth loading fade-in */
    animation: fadeIn 1.5s ease-in;
}

/* 3. Typography */
h1 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

/* 4. Footer */
footer {
    margin-top: auto; /* Pushes footer to the bottom if content is sparse */
    padding-top: 2rem;
    font-size: 0.875rem;
    color: #666;
    letter-spacing: 0.05em;
}

/* Simple Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}