@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

body {
    margin: 0;
    min-height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #0A0B0E;
    min-height: -webkit-fill-available;
}
html {
    height: -webkit-fill-available;
  }
.brand-logo-container {
    position: absolute;
    top: 32px;
    left: 40px;
}

.hero-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}
.hero-image{
    width: 100%;
    max-width: 768px;
    height: auto;
    padding: 0 20px;
    margin-bottom: 40px;
    box-sizing: border-box;
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
}

.status-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px; /* 142.857% */
    letter-spacing: -0.084px;
    color: #99A0AE;
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
}

@media (max-width: 768px) {
    .hero-image {
        max-width: 100%;
        padding: 0 16px;
    }

    .brand-logo-container {
        top: 24px;
        left: 24px;
    }
}

@media (max-width: 480px) {
    .hero-image {
        padding: 0 12px;
    }
}

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

button {
    display: inline-flex;
    gap: 4px;
    background-color: transparent;
    padding: 16px 24px;
    position: relative;
    color: #fff;
    border-radius: 999px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px; 
    letter-spacing: -0.084px;
    border: 1px solid #2B303B;
    box-shadow: 0px 1px 2px 0px rgba(10, 13, 20, 0.03);
    transition: background-color 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
    animation: fadeIn 0.8s ease-out forwards;

  }
    button:hover {
        background-color: #181B25; 
    }
  