html {
    background-color: rgb(0, 0, 65);
}

body {
    background-color: white;
    font-family: Verdana, sans-serif;
    font-weight: normal;
    margin: 0;
}

/* entire navbar element */
header {
    display: flex;
    background-color: aliceblue;
    justify-content: space-between;
}

/* list of links */
header nav ul{
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
}

/* the individual links */
header nav ul li a {
  display: block; /* center vertically */
  color: black;
  font-size: 24px;
  text-decoration: none;
  padding: 38px 20px 38px 20px;
  margin: 0;
}

nav li a:hover {
  background: #333333;
  color: white
}

img[src="images/logo.png"],[src="images/checkedBox.png"],[src="images/crossedBox.png"] {
    width: 90px;
    height: 90px;
    padding: 10px;
}

img{
    width: 90px;
    height: 90px;
    padding: 10px;
}

h1 {
    font-size: 2rem;
    font-weight: bold;
    margin-top: none;
}

h2 {
    font-size: 1.5rem;
    font-weight: bold;
}

p {
    font-size: 1rem;
}

footer {
    background-color: gray;
    padding: 0.5rem;
}

form {
    background-color:rgb(230, 230, 230);
    width: max-content;
}

iframe {
    width: 100%;
    height: 1000px;
}
footer p {
    text-align: center;
    font-size: 0.8em;
}

table th {
    background-color:rgb(230, 230, 230)
}

table td {
    border-top: 1px solid black;
}

table td:first-child {
    text-decoration: underline;
}

table td:nth-child(2) {
    text-align: center;
}

.productList {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;

    list-style: none;
}

.productList div {
    background-color: red;
    margin: 10px;
}

.productList div img {
    width: 200px;
    height: 280px;
    padding: 10px;
    
    /* center image */
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.productList div p {
    font-weight: bold;
    text-align: center;
    margin-top: 0;
    margin-bottom: 10px;
}

.stretchedImages img {
    width: 1000px;
    height: 200px;
}

.croppedImages div {
    width: 500px;
    height: 200px;
}

.croppedImages div img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* expand to fill parent container */
}

section#content {
    padding: 1em;
    /* center the whole website*/
    max-width: 1366px;
    margin: auto;
}