@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');
* {
    margin: 0;
    padding: 0;
    font-family: 'IBM Plex Mono', monospace;
}

body {
    padding: 30px;
    background-color: #222;
}

h3 {
    display: block;
    margin: 10px 0 5px 0;
    color: #fff;
}

p {
    color: #fff;
}

p > a {
    text-decoration: none;
    color: inherit;
    line-height: 1;
    background: linear-gradient(0deg, #5030aa, #5030aa) no-repeat right bottom / 0 var(--bg-h);
    transition: background-size 350ms;
    padding-bottom: 2px;
    --bg-h: 2px;
}

p > a:where(:hover, :focus-visible) {
    background-size: 100% var(--bg-h);
    background-position-x: left;
}

ul {
    display: flex;
    flex-wrap: wrap;
}

ul li {
    margin: 10px;
    list-style: none;
}

ul li > a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 14px;
    border-radius: 5px;
    background-color: #5030aa;
    text-decoration: none;
    font-weight: 500;
    color: #fff;
    transition: background-color .2s ease, box-shadow .2s ease;
}

ul li > a:hover {
    box-shadow: 0 0 10px 0 rgb(97 53 173 / 50%);
    background-color: #6135ad;
}

ul li > a > img {
    max-height: 25px;
    margin-right: 8px;
}

section {
    padding-bottom: 20px;
}

section > h3 {
    font-size: 30px;
}

div > a {
    height: 280px;
    width: 420px;
}

div > a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.staff {
    display: grid;
    justify-content: start;
    grid-template-rows: repeat(3, 40px);
    grid-template-columns: repeat(3, auto);
    gap: 8px;
    padding: 20px 0;
}

.staff p {
    padding: 0 10px;
}
