* {background-color: rgb(117, 49, 49);
    color: blanchedalmond;}

h1, h2 {
    text-align: center;
    font-family: "Lobster Two", sans-serif;
    font-weight: 400;
    font-style: normal;
}

p, h3, h4, li {
    font-family: "Quintessential", serif;
    font-weight: 400;
    font-style: normal;
}

h3 i {
    text-align: center;
}

img {
  display: block; 
  margin: 0 auto; 
  width: 20%;
}

nav {
    overflow: hidden;
}

nav a {
    font-family: "Quintessential", serif;
    float: left;
    background-color: bisque;
    color: maroon;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
}

nav a:hover {
    background-color: maroon;
    color: bisque;
}

nav a.active {
    background-color: #3f0c02;
    color: bisque;
}

.card-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
    min-width: 100px;
    max-width: 150px;
    flex: 1;
    padding: 15px;
    border-radius: 20px;
    margin: 10px;
}

.card:hover {
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.5);
}

.container {
    padding: 2% 5%;
}

.card img {
    height: 150px;
    object-fit: cover;
}

a {text-decoration: none;}

#subtext {
    text-align: center;
}