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

body {
    font-family: "Plus Jakarta Sans", sans-serif;
}

header {
    padding: 2rem 0;
    font-weight: bold
}

main {
    max-width: 720px;
    margin: auto;
    padding: 0 1rem;
}

#hero {
    height: 320px;
    margin-bottom: 3rem;
    position: relative;
}

#hero figure {
    background-color: black;
    height: 100%;
}

#hero .content {
    position: absolute;
    top: 50%;
    color: white;
    padding: 1rem 2rem;
    background-color: rgb(106, 0, 255);
}

#hero figure img {
    width: 100%;
    height: 100%;
}

.card-list table td figure {
    background-color: black;
}

.card-list table tr td {
    padding: 0.6rem;
}

.card-list table tr td button {
    padding: 0.5rem 2rem;
    border: 1px solid rgb(111, 0, 255);
    color: rgb(111, 0, 255);
    background-color: transparent;
}

.card-list table tr td button:hover {
    padding: 0.5rem 2rem;
    border: 1px solid rgb(111, 0, 255);
    background-color: rgb(111, 0, 255);
    color: white;
}

.card-list table tr td figure img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-position: center;
}