body{
    font-size: 110%;
    width: 90%;
    margin: auto;
}
header h3, select{
    display: inline;
    margin-right: 10px;
}

header {
    height: 50px;
    background-color: rgb(63,81,181);
    padding-left: 20px;
    padding-top: 20px;
}

.error{
    background: #ffe7e8;
    border-color: #e66465;
    width:100%;
    margin: 20px 0px;
    padding: 10px;
    font-size: 1.125rem;
    border-left-width: 5px;
    border-left-style: solid;
}

.main-container{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start; 
}

#info-section{
    margin-right: 10px;
}

#info-section, #contributors-section{
    box-sizing: border-box;
    margin-top: 20px;
    padding: 20px 20px;
    width: calc( 100% / 2 - 10px);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

#contributors-section{
    margin-left: 10px;
}

#info-section td:nth-child(1){
    font-weight: bold;
}

#contributors-section h2{
    margin-top: 0px;
}

#contributions-container img{
    float: left;
    width: 50px;
    border-radius: 7px ;
    margin-right: 10px;
}

#contributions-container div{
    padding: 10px 10px 10px 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
   
}

#contributions-container div::after { 
  content: "";
  display: block; 
  clear: both;
}

.num{
    float: right;
    color: white;
    background-color: gray;
    padding: 1px 8px;
    border-radius: 7px ;
}

@media (max-width:768px){
    #info-section, #contributors-section{
        width: 100%;
        margin-left: 0px;
        margin-right: 0px; 
    }
    body{
        width:100%;
    }
}

