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

article, aside, details, figcaption, figure, footer, header, hgroup,
	menu, nav, section {
	display: block;
}

body {
	line-height: 1;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:after, blockquote:before, q:after, q:before {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

body {
	background: #000;
	color: aliceblue;
	-webkit-font-smoothing: antialiased;
  	-moz-osx-font-smoothing: grayscale;
}

h1 {
	font-weight: 200;
	text-align: center;
	font-size: 60px;
	margin-bottom: 40px
}

h2 {
	text-align: center;
	font-size: 24px;
	margin-bottom: 60px;
}

h3 {
	font-size: 26px;
	padding-bottom: 5px;
	text-align: center;
}

a {
	text-decoration: underline;
}

a:focus {
	outline: 0;
}

p {
	font-size: 20px;
	line-height: 24px;
	font-weight: bold;
}

p a {
	color: #e9ecf0;
}

.profile-image {
	margin: 0 auto 40px;
	width: 200px;
	height: 200px;
}

.profile-image img {
	max-width: 100%;
	border-radius: 200px
}

.top {
	color: aliceblue;
	padding: 60px 0
}

.top p {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 10px;
	text-align: center
}

.top a {
	color: #FFF;
}

.contact-info {
	font-size: 30px;
	text-align: center;
	padding: 10px 0;
}

.contact-info .item {
	display: inline-block;
}

.contact-info .item a {
	padding: 0 5px;
}

.main-content {
	padding: 30px 0;
}

.image {
	text-align: center;
	margin-bottom: 60px;
}

.image img {
	max-width: 100%;
}

.content-section {
	margin-bottom: 60px;
	text-align: center;
}

.content-section-item {
	padding: 40px 0;
	display: block;
	border-bottom: solid #eee 1px;
}

.content-section-item a {
	color: #555;
	text-decoration: none;
}

.content-section .row>div:first-child {
	border-right: solid #eee 1px;
}

#hackernews-widget {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #000;
    color: #ffffff;
    border: 2px solid aliceblue;
    border-radius: 5px;
    font-family: 'Arial';
    font-size: 14px;
    max-width: 400px;
    box-shadow: 0 0 10px aliceblue;
    z-index: 1000;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    max-height: 40px;
    padding: 10px 15px;
}

/* Expanded state */
#hackernews-widget.expanded {
    max-height: 500px;
    padding: 15px;
}

/* Header with toggle icon */
#hn-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

#hn-header strong {
    color: aliceblue;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#hn-toggle {
    font-size: 18px;
    color: aliceblue;
}

/* List styling */
#hackernews-widget ul {
    margin: 10px 0 0;
    padding: 0;
    list-style: none;
    display: none;
    max-height: auto;
    overflow-y: auto;
}

#hackernews-widget.expanded ul {
    display: block;
}

#hackernews-widget li {
    margin-bottom: 5px;
}

#hackernews-widget a {
    color: #e9ecf0;
    text-decoration: none;
}

#hackernews-widget a:hover {
    text-decoration: underline;
    color: #e9ecf0;
}

@media screen and (max-width: 768px) {
	.menu {
		height: auto;
	}
	.menu-inner {
		display: block;
	}
	.menu-link a {
		padding: 10px 0;
	 	font-size: 1.2em;
	}
	.menu.active {
	 	width: -webkit-calc(50% - 0.5rem);
		width: calc(50% - 0.5rem);
	}
    #hackernews-widget {
        display: none;
    }
}
