@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');


.navbar{
    margin: 5px;
    font-family: "Poppins", sans-serif;
}
.navbar ul{
    list-style-type: none;
    background-color: whitesmoke;
    text-decoration: none;
    padding: 0px;
    margin: 0px;
    justify-content: space-around;
    overflow: hidden;
}
.navbar a{
    color: black;
    text-decoration: none;
    display: block;
    text-align: center;
    padding: 15px;
}
.navbar a:hover{
    background-color: #1ddde8;
}
.navbar li{
    float: left
    
}



.container {
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 20px;
    max-width: 600px;
    width: 90%;
    text-align: center;
}

header h1 {
    margin: 0 0 20px 0;
    color: #333;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-image img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.profile-details h2 {
    margin: 0;
    color: #007bff;
}

.profile-details p {
    color: #555;
    margin: 10px 0;
}

.about-me{
    background-color: #1ddde8;
    color: white;
    display: flex;
    justify-content: center;
}

p{
    font-size: large;
    font-family: "Poppins", sans-serif;
}

.tech-stack {
    margin-top: 30px;
}

.tech-stack h2 {
    color: #333;
}

.tech-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100px;
}

.tech-item img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 10px;
}

.tech-item p {
    margin: 0;
    font-size: 14px;
    color: #555;
}

.tools img{
    width: 100px;
}
.container {
    display: flex;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 20px;
    max-width: 900px;
    width: 90%;
    text-align: center;
}
.tools {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 120px;
    text-align: center;
    background: #f4f4f9;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.tools img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 10px;
}

.tools p {
    margin: 0;
    font-size: 14px;
    color: #555;
}

.tools:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.tech-stack h2{
    display: flex;
    justify-content: center;
    color: #007bff;
}
.tools h1{
    display: flex;
    justify-content: center;
}
.description{
    display: block;
    margin-left: 30px;
    padding: 20px;
}