* {
    padding: 0;
    margin: 0;
}

body {
    background-color: #1a1b28;
}

.logo img {
    display: block;
    margin: 40px auto;
    width: 40vw;
}
.about{
    margin-bottom: 40px;
}
.bar {
    margin: 0 auto;
    width: max-content;
    border-radius: 30px;
    border: 1px solid #dcdcdc;
    background-color: white;
    height: max-content;
    padding-right: 10px;
    display: flex;
    align-items: center;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.searchbar {
    height: 2rem;
    border: none;
    width: 60vw;
    font-size: 16px;
    outline: none;
    border-radius: 30px;
    padding: 7px;
}

.bar img{
    cursor: pointer;
}

.container{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 50px 0px;
    padding: 8px;
    flex-wrap: wrap;
}
.item{
    width: max-content;
    background-color: #1a1b28;
    box-shadow: 0px 0px 9px 0.5px gray;
    padding: .6px;
    margin: 10px;
    text-align: center;
}
.info{
    background-color: white;
    text-align: center;
    padding: 8px;
    z-index: 20;
}
.name{
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 13rem;
}
.thumbnail{
    width: 15rem;
    object-fit: contain;    
}
.action{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px ;
}
.action a {
text-decoration: none;
}
.down-icon{
    width: 1.9rem;
    cursor: pointer;
}

.center{
    text-align: center;
    color: white;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

