@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;700&display=swap"); :root { --white: #fff; --darkblue: #1b4965; --lightblue: #edf2f4; } * { padding: 0; margin: 0; } body { margin: 50px 0 150px; font-family: "Noto Sans", sans-serif; } .container { /* max-width: 1000px; */ padding: 0 90px; margin: 0 auto; } h1 { font-size: 1.5em; text-align: center; } table { margin: 50px 0 20px; border-collapse: collapse; text-align: center; width: 100%; border: 1px solid black; } th, td { padding: 10px; min-width: 75px; } th { color: var(--white); background: var(--darkblue); } table tbody tr:nth-of-type(even)>* { background: var(--lightblue); } table td:first-child { display: grid; grid-template-columns: 25px 1fr; grid-gap: 10px; text-align: left; }