body {
    font-family: 'Roboto', sans-serif;
    background-color: #1a202c;
    color: white;
    margin: 0;
    padding: 0;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    flex-wrap: wrap;
    border-bottom: 2px solid #38b2ac;
    box-shadow: 0 4px 6px rgba(56, 178, 172, 0.5);
}
.logo {
    display: flex;
    align-items: center;
}
.logo i {
    background-color: #38b2ac;
    color: white;
    padding: 0.5rem;
    border-radius: 50%;
}
.logo span {
    margin-left: 0.75rem;
    font-size: 1.25rem;
    font-weight: bold;
}
.text-content h2 {
    font-size: 50px;
    font-weight: bold;
    background: linear-gradient(90deg, #a66cff, #6cdbff, #ffb86c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 500% 100%;
    animation: gradientAnimation 6s linear infinite;
}

@keyframes gradientAnimation {
    0% { background-position: 100% 50%; }
    50% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}
nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1rem;
}
nav a {
    margin: 0.5rem 1rem;
    color: white;
    text-decoration: none;
}
nav a:hover {
    color: #38b2ac;
}
.search-bar {
    display: flex;
    align-items: center;
    margin-top: 1rem;
}
.search-bar input {
    padding: 0.5rem;
    border: 1px solid #2d3748;
    border-radius: 0.25rem 0 0 0.25rem;
    background-color: #2d3748;
    color: white;
}
.search-bar button {
    background-color: #38b2ac;
    padding: 0.5rem;
    border: none;
    border-radius: 0 0.25rem 0.25rem 0;
    color: white;
}
main {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-top: 4rem;
    padding: 0 1rem;
    flex-wrap: wrap;
}
.text-content {
    max-width: 30rem;
    margin-right: 2rem;
}
.text-content h1 {
    font-size: 2.5rem;
    font-weight: bold;
}
.text-content h2 {
    font-size: 3rem;
    font-weight: bold;
    color: #38b2ac;
    margin-top: 0.5rem;
}
.text-content span {
    font-size: 1.25rem;
    margin-top: 0.5rem;
}
.description {
    color: #a0aec0;
    margin-top: 1rem;
}
.cta-button {
    margin-top: 1.5rem;
    background-color: #38b2ac;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgba(56, 178, 172, 0.5);
}

.cta-button a{
    text-decoration: none;
    color: white;
}

.profile-image {
    border-radius: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
    object-fit: cover;
}
.social-icons {
    display: flex;
    margin-top: 3rem;
}
.social-icons a {
    color: #a0aec0;
    margin: 0 1rem;
    font-size: 2rem;
    text-decoration: none;
}
.social-icons a:hover {
    color: white;
}
@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }
    .search-bar {
        margin-top: 1rem;
        width: 100%;
    }
    .search-bar input {
        flex: 1;
    }
    .search-bar button {
        flex: 0;
    }
    nav {
        margin-top: 1rem;
        width: 100%;
        justify-content: space-around;
    }
    main {
        flex-direction: column;
        align-items: center;
    }
    .text-content {
        margin-right: 0;
        text-align: center;
    }
    .text-content h1 {
        font-size: 2rem;
    }
    .text-content h2 {
        font-size: 2.5rem;
    }
    .text-content p {
        font-size: 1rem;
    }
    .description {
        font-size: 0.875rem;
    }
    .cta-button {
        padding: 0.5rem 1rem;
    }
    .profile-image {
        width: 100%;
        max-width: 300px;
        margin-top: 2rem;
    }
}

footer .foot{
    height:50px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    background-color: rgb(21, 190, 153);
    margin-top: 20px;
}