/* Blue gradient background */
body {
    margin: 0;
    padding: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(150deg, #101529 10%, #3F89FF 55%, #2b3451 100%);
    color: white;
    text-align: center;
    padding: 0 20px;
}

/* Center box */
.container {
    max-width: 600px;
    padding: 20px;
}

/* Company name */
.brand {
    font-size: 62px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #99713f   5%, #e0c27c 40%, #f8efae 55%, #e0c27c 65%, #99713f 95%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Main text */
.headline {
    font-size: 25px;
    font-weight: 400;
    margin-bottom: 10px;
}

/* Subtext */
.sub {
    font-size: 18px;
    opacity: 0.7;
}

/* Footer styling */
.footer {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    font-size: 14px;
    opacity: 0.7;
    color: white;
}

/* Large tablets (max-width: 1024px) */
@media (max-width: 1024px) {
    .brand {
        font-size: 54px;
    }
    .headline {
        font-size: 22px;
    }
}

/* Tablets (max-width: 768px) */
@media (max-width: 768px) {
    .brand {
        font-size: 46px;
    }
    .headline {
        font-size: 20px;
    }
    .sub {
        font-size: 16px;
    }
}

/* Mobile devices (max-width: 480px) */
@media (max-width: 480px) {
    body {
        padding: 0 15px;
    }

    .brand {
        font-size: 38px;
    }
    .headline {
        font-size: 18px;
    }
    .sub {
        font-size: 15px;
    }
}