* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
  
body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #e2f0cb, #c8e4f0);
    color: #444;
    line-height: 1.6;
    padding: 0;
}
  
header {
    background: linear-gradient(45deg, #76c7c0, #f7a1b5);
    color: #fff;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1s ease-in;
}
  
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
  
header h1 {
    font-family: poppines;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 2px;
}

#main-text {
  font-size: 25px;
  font-weight: 500;
  margin: 0.6rem 0;
  color: white;
  font-family: 'Times New Roman', Times, serif;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8),
                 0 0 20px rgba(118, 199, 192, 0.5);
    transition: text-shadow 0.3s ease;
}

#coffee {
    height: 20px;
    font-family: 'Times New Roman', Times, serif;
    font-size: 14px;
    color: white;
    margin: 0.5rem 0;
    text-align: center;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8),
                 0 0 20px rgba(118, 199, 192, 0.5);
    transition: text-shadow 0.3s ease;
}

#coffee:hover {
    text-shadow: 0 0 15px rgba(255, 255, 255, 1),
                 0 0 30px rgba(118, 199, 192, 0.7);
}

header p {
    font-family: 'Times New Roman', Times, serif;
    font-size: 1.2rem;
    margin: 0.5rem 0;
}

.about img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: block;
    margin: 0 auto 1.5rem;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
  
.image-wrapper {
    max-width: 300px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}
  
.image-wrapper img {
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
  
.image-wrapper:hover img {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
  
nav ul {
    list-style: none;
    margin-top: 1rem;
    text-align: center;
    padding: 0;
}

nav ul li {
    display: inline-block;
    margin: 0 20px;
    padding: 10px 20px;
    background-color: #76c7c0;
    border-radius: 30px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    display: inline-block;
}

nav ul li:hover {
    background-color: #f7a1b5;
    transform: scale(1.1);
}
  
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem;
}
  
section {
    margin: 2rem 0;
}
  
h2 {
    font-size: 2rem;
    color: #76c7c0;
    text-transform: uppercase;
    margin-bottom: 1rem;
    position: relative;
}
  
h2:after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #f7a1b5;
    margin-top: 0.5rem;
    transition: width 0.3s ease;
}
  
h2:hover:after {
    width: 100px;
}
  
.about, .projects, .skills, .contact {
    background-color: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}
  
.about:hover, .projects:hover, .skills:hover, .contact:hover {
    transform: translateY(-10px);
}
  
.projects .project {
    margin-bottom: 2rem;
}
  
.project h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #444;
}
  
.project p {
    margin-bottom: 0.5rem;
}
  
.project a {
    color: #0E7C7B;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}
  
.project a:hover {
    color: #f7a1b5;
}
  
.skills ul {
    list-style: none;
    margin-top: 1rem;
}
  
.skills ul li {
    background-color: #ffe0b2;
    padding: 0.7rem;
    margin-bottom: 0.7rem;
    border-radius: 5px;
    font-weight: bold;
}
  
a {
    text-decoration: none;
}
  
@media (max-width: 768px) {
    header h1 {
        font-size: 2.5rem;
    }
    
    header p {
        font-size: 1rem;
    }
  
    nav ul li {
        display: block;
        margin: 10px 0;
    }
  
    section {
        margin: 1.5rem 0;
    }
  
    h2 {
        font-size: 1.8rem;
    }
  
    .container {
        padding: 1rem;
    }
}
footer {
    background-color: skyblue;
    border-radius: 15px;
    color: white;
    text-align: center;
    padding: 1rem;
    position: relative;
    bottom: 0;
    width: 100%;
}
