* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  }

:root{
  --primary:#c2c2c2;
  --secondary:#caa439;
  }

html{
    background-color: #0f111d;
}

header{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 8vh;
}

.header-title{
    color: var(--primary);
    font-size: 4rem;
    font-weight: 700;
    text-align: center;
}

.header-subtitle{
    color: #d9a02e;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 1rem;
}

main{
    /* background-color: red; */
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    width: 90%;
    margin: auto;
    margin-top: 5rem;
}

article{
    /* background-color: red; */
    width: auto;
    color: var(--primary);
    margin-bottom: 3rem;
}

.img-thumbnail{
    height: 250px;
    width: auto;
    border-radius: 20px;
}

.cards-title{
    margin-top: 0.5rem;
}

.cards-blurb{
    color: #6d6d6d;
    font-weight: 300;
    font-style: italic;
}