* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Monaco', monospace;
}

body {
    line-height: 1.6;
    color: #333;
}

header {
    width: 100%;
    height: 100vh;
    background-image: url('your-image.jpg'); /* Replace with your image */
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-section {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.overlay {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
    width: 50%;
    margin: auto;
}

.logo {
    position: absolute;
    bottom: 10px; /* Adjust for spacing from the top */
    right: 10px; /* Adjust for spacing from the left */
}

.logo img {
    max-width: 150px; /* Set the logo size */
    height: auto;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 500;
}

.hero-section p {
    font-size: 1.5rem;
    margin-top: 10px;
}

.content-section {
    padding: 60px 20px;
    background-color: #f4f4f4;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

.content-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.content-section p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #666;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: white;
}

footer p {
    font-size: 1rem;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .overlay {
        padding: 15px;
    }

    .content-section h2 {
        font-size: 2rem;
    }

    .content-section p {
        font-size: 1rem;
    }

    footer p {
        font-size: 0.9rem;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 1.8rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .overlay {
        padding: 10px;
    }

    .content-section h2 {
        font-size: 1.8rem;
    }

    .content-section p {
        font-size: 0.9rem;
    }

    footer p {
        font-size: 0.8rem;
    }
}


/* The rest of the CSS remains unchanged */

.typing-effect {
    font-size: 1.5rem;
    border-right: 2px solid white;
    white-space: nowrap;
    overflow: hidden;
    width: auto;
    animation: typing 4s steps(40, end), blink 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink {
    from, to { border-color: transparent; }
    50% { border-color: white; }
}
