body {
    font-family: Arial, sans-serif;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
}

.banner {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 50px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.profile-container {
    display: flex;
    align-items: center;
}

.profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-right: 20px;
}



.profile-info {
    text-align: left;
}

h1 {
    margin: 0;
    font-size: 2.5em;
}

p {
    margin: 10px 0 0;
    font-size: 1.2em;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons a {
    color: #fff;
    font-size: 1.5em;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #1da1f2; /* Twitter Blue */
}

main {
    padding: 20px;
}

.technologies, .projects {
    margin: 20px 0;
}

.tech-list {
    display: flex;
    flex-wrap: wrap;
}

.tech-item {
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    padding: 10px 20px;
    margin: 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.tech-item:hover {
    background-color: #ddd;
}

.project {
    /* background-color: #f9f9f9; */
    border: 1px solid #ddd;
    padding: 20px;
    margin: 10px 0;
    border-radius: 5px;
    background-color: #0093E9;
    background-image: linear-gradient(160deg, #0093E9 0%, #80D0C7 100%);
}

.project h3 {
    margin: 0 0 10px;
}

.project p {
    margin: 0 0 10px;
}

footer {
    text-align: center;
    padding: 10px;
    background-color: #333;
    color: #fff;
}

.scroll-to-top {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #333;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 50%;
    font-size: 1.5em;
    cursor: pointer;
    z-index: 1000;
}
/* Media query for mobile devices */
@media only screen and (max-width: 600px) {

    .profile-container {        
        width: 100%;
        display: block;
    }
   
    .profile-pic {    
        width: 200px; /* Adjust width for smaller screens */
        height: 200px; /* Adjust height accordingly */
        margin-right: 10px; /* Adjust margin if needed */
    }
    .social-icons {
        display: block;
    }
}