body{
    font-family:Arial;
    text-align:center;
    margin:0;
    overflow-y:auto;
}
.container{
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color:linear-gradient(to right, #e3f2fd, #ffffff);
}
h1{
    margin-bottom:20px;
}
button{
    margin-left: 20px;
    padding: 8px 14px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    background-color: #2d89ef;
    color: white;
    transition: all 0.3s ease;
}
button:hover{
    background-color: #5e758e;
    transform: translateY(-2px);
}
input{
    padding: 8px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #ccc;
    transition: all 0.3s ease;

}
input:focus{
    outline: none;
    border: 2px solid black;
    width: 220px;

}
img{
    width:100px;
    border-radius:50%;
    margin-bottom:10px;
}
#profile{
    margin-top:20px;
    background-color: white;
    padding: 20px;
    width: 300px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}
#profile:hover {
    transform: scale(1.02);
    transition: all 0.3s ease;
}
#profile p{
    margin: 5px 0;
}

#reposList{
    list-style-type:none;
    padding:0;
}
#reposList li{
    margin:8px 0;
    padding:8px;
    background-color:#f4f4f4;
    border-radius:5px;
}
#reposList a{
    text-decoration:none;
    color:#2d89ef;
    font-weight:bold;
}