
@import url('https://fonts.googleapis.com/css2?family=Libertinus+Serif:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=Lobster&family=Oxygen:wght@300;400;700&display=swap');

html, body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-around;
    border-bottom: 1px solid gray;
    height: 80px;
}

.navbar > h1 {
    color: slategray;
    font-family: "Lobster", sans-serif;
    font-size: 30pt;
    font-weight: 400;
    font-style: normal;
}

.footer {
    background-color: slategray;
    
    display: flex;
    height: 200px;
    padding: 50px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: top;
    gap: 12px;
    
    color: white;
    font-family: "Oxygen", sans-serif;
    font-size: 10pt;
}

.footer ul {
    list-style: none;
    margin: 0;
    padding-left: 0;
}

.footer h1 {
    font-size: 16pt;
}

.footer a {
    color: lightgray;
    text-decoration: none;
}

.footer a:hover {
    color: white;
}

h1 {
    font-size: 30pt;
}

.content-main {
    margin-left: 10em;
    margin-right: 10em;
    font-family: "Oxygen", sans-serif;
}

.product-list {
    display: flex;
    padding: 50px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: top;
    gap: 12px;
}

.thumbnail {
    width: 330px;
    height: 330px;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    display: inline-block;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.1s ease-in-out;
}

.thumbnail:hover img {
    transform: scale(1.2,1.2);
    filter: brightness(70%);
}

.thumbnail p {
    display: none;
    position: absolute;
}

.thumbnail:hover p {
    display: inline;
    position: absolute;
    top: 75%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 24px;
    font-weight: bold;
}