/*global*/
html,body{
    width: 100%;
    height: 100%;
    background-color: RGB(31, 34, 31);
    overflow: hidden;
}

.navbar-brand > img{
    margin-right: 5px;
}

#content{
    width: 100%;
    height: 90%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
}

#content::-webkit-scrollbar {
    width: 8px;
}

#content::-webkit-scrollbar-track {
    border-radius: 4px;
}

#content::-webkit-scrollbar-thumb {
    background: gray;
    border-radius: 4px;
}

#content::-webkit-scrollbar-thumb:hover {
    background: grey;
}



a{
    text-decoration: none;
}

#content > a {
    margin: 50px;
}

.card:hover{
    scale: 1.1;
}

.card > img{
    max-width: 680px;
    max-height: 680px;
}

li{
    list-style: none;
}

#Description{
    display: flex;
    flex-direction: column;
}

#Description > p{
    margin: 0;
    padding: 0;
}

/*fin global*/
