/* Eric Meyer Reset's code */

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

body, .tag{
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* dackdel's style */

body {
    font-family: 'Inter', sans-serif;
    min-height: 100vh; 
    justify-content: center;
}

* {
    font-family: 'Inter', sans-serif;
}

.section-title{
  color: silver;
  font-size: 16px;
	font-weight: 900;
	line-height: 2em;
}

@media screen and (max-width: 767px) {
	.section-title {
		font-size: 14px;
		line-height: 1.8em;
	}
}

h1, h2, h3, h4, h5, h6, p, li {
	font-size: 27px;
	line-height: 150%;
}

p {
	margin: 0 0 20px 0;
}

@media screen and (max-width: 767px) {
   h1 { font-size: 32px; line-height: 120%; }
   h2 { font-size: 28px; }
   h3 { font-size: 24px; }
   h4 { font-size: 20px; }
   h5 { font-size: 18px; }
   h6 { font-size: 14px; }
   p, li { font-size: 18px; line-height: 160%; }
}

a {
	color: black;
	text-decoration: none;
	font-weight: 700;
	font-size: inherit;
}

a:hover {
  text-decoration:underline;
}

nav {
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	padding: 20px;
	position: fixed;
	text-align: center;
	list-style-position: inside;
}

.logo {
	width: 75px;
	height: 75px;
}

@media screen and (max-width: 767px) {
  .logo {
    width: 40px;
	  height: 40px;
  }
}


main {
	max-width: 1024px;
	margin: 0 auto;
	padding-left:16px;
	padding-right:16px;
}

@media screen and (max-width: 767px) {
	main {
		padding-left: 20px;
		padding-right: 20px;
	}
}

.purple a {
	color: rgb(92,10,232);
}

.magenta a {
	color: rgb(255,32,128);
}

.orange a {
	color: rgb(255,128,64);
}

.green a{
	color: rgb(36,251,192);
}

.yellow-orange a {
	color: rgb(255,176,0);
}

.cyan a {
	color: rgb(64,216,224);;
}

.section {
	margin: 40px 0;
	padding: 40px 0;
}

@media screen and (max-width: 767px) {
	.section {
		margin: 20px 0;
		padding: 20px 0;
	}
	
	#intro {
		padding-top: 100px !important;
		padding-bottom: 40px !important;
	}
}

.data {
	color: rgba(0,0,0,.25);
	display: inline-block;
	font-weight: 700;
	line-height: 16px;
	font-size: 20px;
	vertical-align: middle;
}

@media screen and (max-width: 767px) {
  .data {
    font-weight: inherit;
	  font-size: 14px;
	  vertical-align:baseline;
  }
}

.desktop-break {
    display: block; /* This makes the line break effective */
}
.mobile-break {
    display: none; /* This hides the line break */
}

@media screen and (max-width: 767px) {
    .desktop-break {
        display: none; /* Hide desktop-specific breaks */
    }
    .mobile-break {
        display: block; /* Show mobile-specific breaks */
    }
}


footer {
	text-align: center;
	margin: 40px auto;
}


/*                                    */ 
/* Home  CSS                       */ 
/*                                    */ 



/* Default style for desktop */
main#home {
    padding-left: 0;
    padding-right: 0;
}

/* Style for mobile devices */
@media screen and (max-width: 767px) {
    main#home {
        padding-left: 16px;
        padding-right: 16px;
    }
}

/*                                    */ 
/* Article  CSS                       */ 
/*                                    */ 

article {
  margin: 0 auto;
  max-width: 768px;
  width: 100%;
}

article header p, article header time {
    padding: 0;
    margin: 0;
  }

article p {
  font-size: 1.5rem;
  padding-bottom: 3rem;
}

/*                                    */ 
/* Utilities inspired by TailwindCSS  */ 
/* Turn this into SupermassiveCSS     */
/*                                    */ 

.p {
  padding: 4px;
}

.p-2 {
  padding: 8px;
}

.p-4 {
  padding: 16px;
}

.p-8 {
  padding: 32px;
}

.px {
  padding-left:16px;
  padding-right:16px;
}

.py {
  padding-top:4px;
  padding-bottom:4px;
}

.py-2 {
  padding-top:8px;
  padding-bottom:8px;
}

.py-4 {
  padding:16px 0 16px 0;
}

.py-8 {
  padding-top:32px;
  padding-bottom:32px;
}

.py-16 {
  padding-top:64px;
  padding-bottom:64px;
}

.py-48px {
  padding-top:48px;
  padding-bottom:40px;
}

.pt-48 {
  padding-top:40px;
}

.py-80 {
  padding-top:80px;
  padding-bottom:80px;
}


.gray {
  color: gray
}