body {
    font-family: Arial, sans-serif;
   
}

.container {
    max-width: 800px;
    margin: 50px auto;
   
}


.search-bar {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center; 
}

input {
    padding: 9px;
   
    width: 450px;
    

  
}

.section8 {
   padding-top: 25px;
   text-align: center;
   align-items: center;

}
button {
    padding: 11px;
    cursor: pointer;

}




.tech-box {
    background-color: #3498db;
    color: #fff;
    padding: 5px 10px;
    margin: 5px;
    border-radius: 5px;
    font-size: 12px;
}

#pagination {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.pageLink {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 5px;
    cursor: pointer;
    text-decoration: none;
    color: #0366d6; /* GitHub link color */
    font-weight: bold;
    border: 2px solid #a43f49;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    
}

.pageLink:hover {
    background-color: #a43f49;
    display: inline-block;
    padding: 10px 20px;
    

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.5s;
    border: none;
    outline: none;
    cursor: pointer;
}
#user{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}



h1 {
    text-align: center;
}

#userProfile {
    text-align: center;
    margin-bottom: 20px;
}

#userProfile img {
    border-radius: 50%;
    max-width: 150px;
    margin-bottom: 10px;
}

#username {
    padding: 10px;
    margin-right: 10px;
}

#searchInput {
    padding: 10px;
    margin-right: 10px;
}

#searchBtn {
    padding: 10px;
    cursor: pointer;
   
}

#reposList {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.repoItem {
    border: 1px solid #ddd;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
}

.repoItem h3 {
    margin-bottom: 5px;
}

.repoItem p {
    color: #666;
    margin-bottom: 10px;
}

.repoItem .techUsed {
    font-weight: bold;
}

.repoItem a {
    text-decoration: none;
    color: #0366d6; /* GitHub link color */
    font-weight: bold;
}