* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: auto 0;
    font-family: Arial, serif;
    background-color: #121212;
    color: #e0e0e0;
}

.zone {
    cursor: pointer;
    color: #e0e0e0;
    font-size: 2em;
    border-radius: 4px;
    border: 1px solid #333;
    transition: all 0.3s linear;
}

.push {
    margin-left: auto;
}

.zone:hover {
    -webkit-box-shadow: rgba(255,255,255,0.1) 0px 5px 15px, inset rgba(255,255,255,0.05) 0px -10px 20px;
    -moz-box-shadow: rgba(255,255,255,0.1) 0px 5px 15px, inset rgba(255,255,255,0.05) 0px -10px 20px;
    -o-box-shadow: rgba(255,255,255,0.1) 0px 5px 15px, inset rgba(255,255,255,0.05) 0px -10px 20px;
    box-shadow: rgba(255,255,255,0.1) 0px 5px 15px, inset rgba(255,255,255,0.05) 0px -10px 20px;
}

/* NAV */
.main-nav {
    display: flex;
    list-style: none;
    font-size: 0.7em;
    margin: 0;
    background-color: #1e1e1e;
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
}

/* Cover */
.container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60vh;
    background-color: #1e1e1e;
    padding-top: 4rem;
}

.cover {
    width: 30rem;
}

/* Grid */
.grid-wrapper {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    background-color: #121212;
    padding: 20px;
}

/* Card Styles */
.card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.card {
    background-color: #1e1e1e;
    border-radius: 5px;
    padding: 20px;
    transition: all 0.3s linear;
    display: flex;
    flex-direction: column;
    height: 100%;
    max-height: 450px; /* Adjust this value as needed */
}

.card:hover {
    -webkit-box-shadow: rgba(255,255,255,0.1) 0px 5px 15px, inset rgba(255,255,255,0.05) 0px -10px 20px;
    -moz-box-shadow: rgba(255,255,255,0.1) 0px 5px 15px, inset rgba(255,255,255,0.05) 0px -10px 20px;
    -o-box-shadow: rgba(255,255,255,0.1) 0px 5px 15px, inset rgba(255,255,255,0.05) 0px -10px 20px;
    box-shadow: rgba(255,255,255,0.1) 0px 5px 15px, inset rgba(255,255,255,0.05) 0px -10px 20px;
    transform: scale(1.05);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
}

.card h4 {
    margin-top: 10px;
    color: #ffffff;
    font-size: 0.5em;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 1px solid #333;
}

.card-description {
    margin-top: 10px;
    overflow-y: auto;
    flex-grow: 1;
}

.card-description::-webkit-scrollbar {
    width: 8px;
}

.card-description::-webkit-scrollbar-track {
    background: #2e2e2e;
}

.card-description::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 4px;
}

.card-description h5 {
    color: #ffffff;
    font-size: 0.3em;
    margin-bottom: 5px;
    text-align: center;
}

.card p {
    color: #b0b0b0;
    font-size: 0.25em;
    margin-top: 5px;
}

.card-description p {
    margin-bottom: 10px;
    white-space: pre-line;
}

.card-description ul {
    list-style-type: disc;
    padding-left: 20px;
}

.card-description ul li {
    padding: 5px 0;
    font-size: 0.25em;
}

.box {
    background-color: #1e1e1e;
    padding: 20px;
    margin: 0;
}

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1e1e1e;
    color: #e0e0e0;
    padding: 20px;
    font-size: 0.7em;
    border-top: 1px solid #333;
}

@media only screen and (max-width: 600px) {
    .main-nav {
        font-size: 0.5em;
        padding: 0;
    }
}

li {
    padding: 20px;
}

a {
    color: #b0b0b0;
    text-decoration: none;
}

/* Background Colors */
.green {
    background: #2d5a3a;
}

.red {
    background: #5a2d2d;
}

.yellow {
    background: #5a522d;
}

.black {
    background: #000000;
}