

h1 {
	font-size: clamp(1.5em, 5vw, 2em);
	text-align: center;
	margin-bottom: 50px;

    span {
        color: #e2de00;
    }
}

main {
	max-width: 700px;
	margin: 0 auto;
	padding: 20px;
}

ul.examples-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 4px;

	a {
		display: flex;
		align-items: baseline;
        justify-content: space-between;
		gap: 12px;

		padding: 10px 14px;
		border-radius: 6px;

		text-decoration: none;
		font-size: 14pt;

		transition: background 0.15s;

		color: #fff;

		&:hover {
			background: #3f3f3f;
		}

		.desc {
			color: #7a7a7a;
			font-size: 12pt;
		}

        
        @media(width <= 800px){
            flex-direction: column;
        }
	}

}
