.small-section {
    margin: 0;
}

.small-collections {
    display: grid;
    grid-template-columns: repeat(3, minmax(250px, 1fr));
    grid-gap: 1.4rem;
    grid-auto-rows: 1fr;
}

@media (max-width: 900px) {
    .small-collections {
        grid-template-columns: repeat(2, minmax(250px, 1fr));
    }
}

@media (max-width: 700px) {
    .small-collections {
        grid-template-columns: 1fr;
    }
}

.small-collection-entry {
    display: flex;
    flex-direction: column;
    border: 1px solid #23808a;
    border-radius: 8px;
    padding: 20px;
    background: #c7dde4;
    overflow: hidden;
    height: 100%;
    justify-content: center;
}

.small-collection-entry:hover {
    border: 2px solid #154c52;
}

img.collection-logo {
    display: block;
    width: 40%;
    height: 20%;
    margin: 5px auto 20px;
}

.small-collection-entry h2 {
    font-size: 1.2em;
    margin-top: 10px;
    margin-bottom: 20px;
    text-align: center;
}

.small-collection-entry p {
    text-align: center;
}

.collection-search-fieldset {
    display: flex;
    flex-direction: column;
}

.collection-search-input {
    width: 100%;
    border: 1px solid #23808a;
    border-radius: 8px;
    margin: 5px;
    align-self: center;
}

.collection-search-input:hover {
    border: 2px solid #154c52;
}

input[type="text"]{
    border: 1px solid #23808a;
}

input[type="text"]:hover{
    border: 2px solid #154c52;
}

.collection-search-checkbox {
    align-items: center;
    cursor: pointer;
    display: flex;
    gap: 5px;
    margin: 5px;
}

.collection-search-checkbox-input {
    scale: 1.4;
    border: 1px solid #23808a;
    border-radius: 3px;
    background: #FFFFFF;
    margin-left: 4px;
}

.collection-search-input:hover {
    border-color: #154c52;
}

input:not([type="button"]){
    border: 1px solid #23808a;
}

input:not([type="button"]):hover{
    border: 2px solid #154c52;
}

.collection-search-checkbox-label {
    font-weight: bold;
    cursor: pointer;
    padding-left: 4px;
}

.collection-search-button {
    width: 100%;
    border-radius: 8px;
    background-color: #23808a;
    align-self: center;
    margin: 5px 5px 15px;
}

.collection-search-button:hover {
    background-color: #154c52;
}
