body {
    background-image: linear-gradient(30deg,#000,#000e2c);
    margin: 0;
    padding: 0;
    min-height: 100vh; /* Ensures full height */
    font-family: 'Courier New', Courier, monospace;
}

.intro {
    position: relative;
    height: 400px;
    width: 100%;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-weight: bold;
}

.intro::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('img/AboutMe_banner.png') center/cover no-repeat;
    filter: blur(3.5px); 
    z-index: -1;       
}


.intro p, .intro h3 {
    margin: 0; /* Remove any default margin for alignment */
}

.myStory {
    background-color: #122436;
    color: white;
    border:#0a1d31 solid 0.1px;
    background: rgba(45, 64, 76, 0.139); 
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 10px;
    width: 90%; 
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    margin: 5%;
}

.myStory p {
    padding-left:7%;
    padding-right: 7%;
    font-size: 16px;
    line-height: 1.6; 
}

.myStory h1 {
    padding-top: 2%; 
    padding-left: 5%;
    font-family: "WindSong", serif;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 20px;
}

footer {
    width: 100%; /* Stretch to full width */
    height: 50px;
    font-size: small;
    text-align: center; /* Center text */
    line-height: 50px; /* Vertically center content within footer */
    background-color: #122436; /* Match span color for cohesion */
    color: white;
}

a {
    font-style: italic;
    color: inherit;
    text-decoration: none;
}

span {
    color: #e0ddcf;
}
