body {
    background-color: #30323f;
    font-family: "oswald_regular",sans-serif;
}

.head {
    margin-left: -1em;
    margin-top: -1em;
    background-color: #262a35;
    width: 100%;
    margin-bottom: 1em;
    display: flex;
    justify-content: center;
}
.logo {
    margin-left: 1em;
    color: white;
    font-size: 1.5em;
    font-weight: bold;
    padding: 1em;
}
h1{
    color: white;
    font-size: 3em;
    font-weight: bold;
}

#card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1em; /* Sets the gap between cards */
  }
  

.card {
    width: 200px;
    height: 300px;
    border-radius: 10px;
    border: 1px solid black;
    margin: 10px;
    position: relative;
}

.card-header, .card-footer {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.card-header {
    top: 0;
}

.card-footer {
    bottom: 0;
}

.number, .unicode {
    margin: 5px;
}
