* {
    box-sizing: border-box;
    font-family: Tahoma, Geneva, Verdana, sans-serif;
    scroll-behavior: smooth;
}
body{
    background-image: url(img.png);
    background-size: 31%;
    background-position: center center;
}
/* width */
::-webkit-scrollbar {
    width: 10px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: #f1f1f1; 
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #f44336; 
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #555; 
  }
.repo-container {
    width: 80%;
    background-color: #f6f6f6;
    margin: 10px auto 0;
}

.get-repos {
    padding: 20px;
    display: flex;
    /* flex-wrap: wrap; */
    background-color: #eee;

}

.get-repos input {
    width: 100%;
    padding: 15px 20px;
    border: none;
    font-size: 20px;
    height: 55px;

}

.get-repos input:focus {
    outline: 2px solid #f44336;
}

.get-repos .getrepobtn {
    width: 140px;
    margin-left: 10px;
    height: 55px;
    background-color: #f44336;
    color: #fff;
    line-height: 55px;
    text-align: center;
    cursor: pointer;
    font-weight: bold;
}

.showdata {
    padding: 20px;
    background-color: #e0e0e0;

}

.repo-box {
    background-color: #fff;
    padding: 15px;
}

.repo-box:not(:last-child) {
    margin-bottom: 7px;
}

.repo-box a ,
.repo-box span{
    float: right;
    margin-left: 5px;
    border-radius: 5px;
    border: 2px solid #f44336;
    padding: 4px 8px;
    background-color: #f44336;
    color: #fff;
    text-decoration: none;
    margin-top: -5px;
}
