body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8; 
}

header {
    background-color: #8a4ebf; 
    color: #fff; 
    padding: 1rem 0;
    text-align: center;
	
}

header h1 {
    font-size: 3.5rem;       
    letter-spacing: 3px;     
    text-transform: uppercase; 
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin: 15px 0;         
    font-family: 'Verdana', Tahoma, Geneva, Verdana, sans-serif; 
    animation: fadeIn 1.5s ease-in; 
	
    background: linear-gradient(45deg, #ffffff, #e6e6fa);
    -webkit-background-clip: text;
    

}


@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

nav li {
    display: inline;
    margin: 0 1rem;
}

nav a {
    color: #fff; 
    text-decoration: none;
}

section {
    padding: 2rem;
    background-color: #fff; 	
}

section h2 {
  margin-bottom: 1.5rem;
  color: #4a148c;
}

#about {
    background-color: #e6e6fa;
}

#contact {
    background-color: #e6e6fa; 
}

footer {
    background-color: #8a4ebf; 
    color: #fff; 
    text-align: center;
    padding: 1rem 0;
}

img {
    max-width: 200px;
    height: auto;
    border-radius: 50%;
    float: left;
    margin-right: 20px;
	
}

img {
  border: 3px solid #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

section {
  margin: 20px auto;
  max-width: 800px;
  border-radius: 10px;
}

nav a:hover {
  color: #ffd700; 
  transition: 0.3s;
}


a {
  color: #6a1b9a;
  text-decoration: underline;
  
}

.footer-heart {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-heart i {
    margin-left: 5px;
}

#about p {
    text-align: justify;
}

#heart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    animation: fadeOut 2s ease 5s forwards;
}

.heart-burst {
    position: absolute;
    font-size: 40px;
    animation: float 5s ease-in-out both;
    opacity: 0;
}

@keyframes float {
    0% {
        transform: translateY(0) scale(0);
        opacity: 0;
    }
    20% {
        transform: translateY(-20vh) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) scale(0);
        opacity: 0;
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
    }
}



