@charset "utf-8";
/* CSS Document */

/* Full-page and zero margins */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #333;
	
}

/* Container for video background */
.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

/* Video styling */
video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

/* Gray overlay */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* 50% gray overlay */
    z-index: 1;
}


/* Title styling */
h1 {
    font-size: 4.5em;
    margin: 0;
    font-weight: 700;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5); /* Slight shadow for readability */
}

/* Typing Animation */
.typing-container {
    font-size: 5vw; /* Adjusts font size based on the viewport width */	margin: 0;
    font-weight: bold;
    color: #fff;    
	vertical-align: middle; /* Aligns cursor with the text */
	text-align: center;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6); /* Shadow for readability */
    white-space: nowrap;
    overflow: visible;
	display: inline-block;
    position: relative; /* Ensure correct stacking context */
}


/* Cursor styling */
.cursor {
    display: inline-block;
    width: 3px; /* Adjust to desired thickness */
    height: 4vw; /* Matches the text height */
    background-color: #fff; /* Matches the text color */
    vertical-align: middle; /* Aligns cursor with the text */
    animation: blink 0.6s steps(1) infinite; /* Smooth blinking effect */
    position: relative; /* Ensure correct stacking context */

}
/* Keyframes for cursor blink */
@keyframes blink {
    50% {
        background-color: transparent; /* Makes the cursor disappear halfway through */
    }
}


.content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: rgba(255, 255, 255, 0.8); /* Semi-transparent white */
    margin-bottom: 60px; /* Space for footer */
}

/* Social links styling */
.social-links {
    margin-top: 10px;
}

.social-links a {
    color: rgba(255, 255, 255, 0.8);
    margin: 0 15px;
    text-decoration: none;
    font-size: 2em;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #ffffff; /* Brighten on hover */
}

/* Centering adjustments for mobile devices */
@media (max-width: 768px) {
    h1 {
        font-size: 3em;
    }
	typing-container{
		font-size: 1em;
	}
    .social-links a {
        font-size: 1.5em;
        margin: 0 10px;
    }
}


