html, body, #imageList {
    border: 0;
    padding: 0;
    margin: 0;
    color: black;
}


/* - - - - - - - - - - - - - - - - - */ 


nav {
    background-color: white;
    position:fixed;
    display: flex;
    padding: 20px;
    width: calc(100% - 40px);
    align-items:center;

    font-size: 12pt;
    letter-spacing: .02rem;
    font-weight:300;
    font-family:-apple-system, Helvetica, Arial, sans-serif;
}

nav > * {
    padding-right: 20px;
}


nav > *:last-child {
    padding-right: 0;
}


nav > *:first-child {
    font-size: 12pt;
    font-weight:500;
}


nav a {
    color: black;
    text-decoration: none;
}


/* - - - - - - - - - - - - - - - - - */ 


#searchbar {
    flex-grow: 1;
    display: flex;
}

#searchbar input {
    flex-grow: 1;
    font-size: 14pt;
    padding: 16px;
    border: none;
    background-color: #eeeeee;
    font-weight:400;
    font-family:Helvetica, Arial, sans-serif;

}

#searchbar button {
    padding: 16px;
    border: none;
    font-size: 14pt;
    color: white;
    background-color: black;
    height: 100%;
    width: 70px;
}

/* - - - - - - - - - - - - - - - - - */ 

#itemlist {
    display:flex;
    flex-wrap: wrap;
    margin: 0;
    border: 0;
    padding: 10px;
    padding-top:94px;
    width: calc(100%-40px);
}

#itemlist a {
    padding: 8px;
    margin: 0;
    border: 0;
    text-decoration: none;
    width: calc(100%/4 - 16px);
    overflow: hidden
}

#itemlist section {
    
    overflow: hidden
}

#itemlist img {
    object-fit: cover;
    width: 100%;
    aspect-ratio: 1/1;
}

#itemlist footer {
    
}


#itemlist h1 {
    color: black;
    font-size: 10pt;
    padding: 10px 0 0 0;
    margin: 0;
    width: 75%;
    
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* number of lines to show */
    line-clamp: 2; 
    -webkit-box-orient: vertical;

    

    font-size: 12pt;
    font-weight:500;
    font-family:-apple-system, Helvetica, Arial, sans-serif;
}


#itemlist p {
    color: black;
    padding: 5px 0 40px 0;
    margin: 0;
    text-overflow: ellipsis;
    white-space: nowrap;

    font-size: 12pt;
    font-weight:200;
    font-family:-apple-system, Helvetica, Arial, sans-serif;
}