/* For Desktop/Laptop Screen (1920X1080) */
.head {
    background-color: #FFFFFF; /* Set the background color of the header to white for a clean look */
}

.image-container {
    display: flex; /* Use flexbox to layout child elements */
    flex-direction: column; /* Stack items vertically */
    justify-content: center; /* Center items vertically within the container */
    align-items: center; /* Center items horizontally within the container */
    height: 80vh; /* Set the height to 80% of the viewport height for adequate space */
}

.image {
    border-radius: 100%; /* Make the image circular by applying full border radius */
    max-width: 100%; /* Ensure the image does not exceed the width of its container */
    max-height: 200px; /* Set a maximum height for the image to prevent it from becoming too large */
    height: auto; /* Maintain the aspect ratio of the image */
    /* This ensures that the image scales properly within the defined limits. */
-webkit-box-shadow:0px 0px 28px 0px rgba(46,210,255,1);
-moz-box-shadow: 0px 0px 28px 0px rgba(46,210,255,1);
box-shadow: 0px 0px 28px 0px rgba(46,210,255,1);
}

#typed-h1::after,
#typed-p::after {
  content: '|';
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

