h1 { font-size: 48px; margin: 0; color: #8aadf4; } h2 { font-size: 36px; margin: 0; } .heading { color: #a5adcb; } * { font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; color: #cad3f5; } body { background-color: #24273a; } main { margin: none; display: flex; flex-direction: column; gap: 5rem; align-items: center; } .hr { width: 80rem; border-top: 2px solid #6e738d; } .container { display: flex; width: 160rem; flex-direction: column; gap: 0.1rem; align-items: center; } .card { width: 15rem; height: 20rem; background-color: #363950; border-radius: 0.5rem; box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); transition: transform 0.15s ease-in-out; cursor: pointer; } .card:hover { transform: scale(1.05); transition: transform 0.15s ease-in-out; }