/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Set font and background styles */
body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(45deg, #271c6c, #1d5f3e, #521265);
    background-size: 300% 300%;
    animation: gradient 15s ease infinite;
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Hyperlink styles */
a {
    color: #dd7732; /* Set hyperlink color */
    text-decoration: none; /* Remove underline */
}

a:hover,
a:focus,
a:active {
    color: #dd7732; /* Prevent color change on hover, focus, and active states */
}

/* Keyframe animation for the background gradient */
@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Container styles */
.container {
    height: 40vh; /* Adjust height to make space for company info */
    display: flex;
    justify-content: center;
    align-items: center;
}

.container p {
    font-size: 3rem;
    padding: 0.5rem;
    font-weight: bold;
    letter-spacing: 0.1rem;
    text-align: center;
    overflow: hidden;
}

.container p span.typed-text {
    font-weight: normal;
    color: #dd7732; /* Typed text color */
}

.container p span.cursor {
    display: inline-block;
    background-color: #ccc;
    margin-left: 0.1rem;
    width: 3px;
    animation: blink .6s infinite;
}

.container p span.cursor.typing {
    animation: none;
}

@keyframes blink {
    0% { background-color: #ccc; }
    49% { background-color: #ccc; }
    50% { background-color: transparent; }
    99% { background-color: transparent; }
    100% { background-color: #ccc; }
}

/* Additional info container styles */
.additional-info {
    margin-top: 1rem;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    text-align: center;
    max-width: 800px; /* Set a maximum width */
    margin-left: auto; /* Center the container horizontally */
    margin-right: auto;
}