.displayinfo{
    width: 100%;
    background: aliceblue;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
}
.grid-container {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: auto auto auto;
    background-color: lightsteelblue;
    padding: 17px;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    grid-gap: 1rem;
}

.grid-item {
    background-color: aliceblue;
    padding: 20px;
    font-size: 18px;
    text-align: left;
}
.list-unstyled {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
    float: left;
}
.grid-item p {
    min-width: 0;
    min-height: 0;
    color: #393939;
    max-width: 100%;
}

.container img{
    width: 100%;
    height: 100%;
    align-items: center;
}

.crop img{
    width: 100%;
    height: 100%;
    align-items: center;
}

.img:hover, .crop img:hover{
    box-shadow: 0 5px 5px 0 rgba(0,0,0,0.07), 0 5px 5px 0 rgba(0,0,0,0.07), 0 5px 5px 0 rgba(0,0,0,0.07), 0 5px 5px 0 rgba(0,0,0,0.07);
}

h3{
    font-size: 20px;
}
.sort-button {
    background-color: rgb(255, 77, 77);
    border: 1px solid rgb(0, 0, 102);
    color: white;
    border-radius: 3px;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 19px;
    margin-bottom:5px;
    font-weight: bold;
    align-items: stretch;
}

.sort-button:hover, .sort-button.active {
    background-color: #fbfbfb;
    color: rgb(255, 77, 77);
}

.sort-row{
    background-color: lightsteelblue;
    width: 100%;
    text-align: center;
    margin-left: 0;
    margin-right: 0;
    padding-top: 10px;
}

#top-button {
    margin-right: 2px;
    display: none;
    position: fixed;
    bottom: 250px;
    right: 0;
    z-index: 99;
    background-color: rgb(255, 77, 77);
    border: 4px solid white;
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 35px;
    padding: 3px;
}


.button-visit {
    background-color: rgb(255, 77, 77);
   border: 2px solid black;
    border-radius: 6px;
    color: white;
    padding: 10px 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-weight: bold;
    font-size: 19px;
    margin-top: 10px;
    align-items: stretch;
}
.button-visit:hover {
    transform: scale(1.1);
    color: black;
}
