body {
    background-color: #303030;
    color: #f8f8f8;
    font-family: Dudu;
}

body::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    aspect-ratio: 16 / 9;
    background-image: url("rob-kaz-star-wars-move-along.jpg");
    background-size: cover;
    opacity: 0.75;
    z-index: -1;
}

.header {
    text-align: center;
}

.main {
    margin: 1rem;
    padding: 1rem;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
}

.card {
    background-color: lightblue;
    color: #1f1f1f;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 2px 2px 4px #888;
    transition: background-color 0.5s;
}

.card:hover {
    background-color: blue;
}

@font-face {
  font-family: "Dudu"; /* Choose a descriptive name for your font */
  src: url("Dudu_Calligraphy.ttf") format("truetype");
  font-weight: normal; /* Optional: specify font weight if needed */
  font-style: normal;  /* Optional: specify font style if needed */
}

