@charset "utf-8";

html {
	scroll-behavior: smooth;
	scroll-padding-block-start: var(--header_height);
}

body {
	direction: rtl;
	min-block-size: 100dvh;
	margin: 0;
	background-color: var(--sky_hero_start);
	letter-spacing: var(--letter_spacing_normal);
	color: var(--color_text);
	font-family: var(--font_main);
	font-size: var(--text_base);
	font-weight: var(--weight_regular);
	line-height: var(--line_height_base);
	text-align: start;
	overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
	font-family: var(--font_main);
	font-weight: var(--weight_bold);
	line-height: var(--line_height_extra_tight);
}

a{
	color: var(--color_text_muted);
}

p {
	margin-block: 0 var(--space_4);
}

img {
	max-inline-size: 100%;
}

body > *:not(#root){
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	width: 1px;
	height: 1px;
	z-index: -999;
	display: none;
}

#root{
	overflow-x: hidden;
}

.visually_hidden {
	position: absolute;
	inline-size: var(--width_border);
	block-size: var(--width_border);
	margin: calc(var(--width_border) * -1);
	padding: 0;
	border: 0;
	clip-path: inset(50%);
	white-space: nowrap;
	overflow: hidden;
}

.skip_link {
	position: absolute;
	inset-block-start: var(--space_3);
	inset-inline-start: -9999px;
	z-index: var(--z_terminal);
	padding-block: var(--space_3);
	padding-inline: var(--space_5);
	border-radius: var(--radius_button);
	background-color: var(--color2);
	color: var(--color_base);
	text-decoration: none;
}

.skip_link:focus-visible {
	inset-inline-start: var(--space_3);
	outline: var(--width_focus) solid var(--color_focus);
	outline-offset: var(--space_1);
}

.content {
	inline-size: 100%;
	max-inline-size: var(--desktop_max);
	margin-inline: auto;
	padding-inline: var(--page_gutter);
}

main.page {
	position: relative;
	z-index: var(--z_content);
}

.screen {
	padding-block: var(--section_space);
}

.background_layer {
	position: fixed;
	inset: 0;
	z-index: var(--z_background);
	pointer-events: none;
	overflow: hidden;
}

.sky {
	position: absolute;
	inset: 0;
}

.sky_day {
	background-image: linear-gradient(to bottom, var(--sky_hero_start), var(--sky_hero_end));
}

.sky_posts {
	background-image: linear-gradient(to bottom, var(--sky_hero_end), var(--sky_posts_end));
	--paralax_opacity: 0;
}

.sky_dusk {
	background-image: linear-gradient(to bottom, var(--sky_dusk_start), var(--sky_dusk_end));
	--paralax_opacity: 0;
}

.sky_night {
	background-image: linear-gradient(to bottom, var(--sky_night_start), var(--sky_night_end));
	--paralax_opacity: 0;
}

.decor {
	position: absolute;
	image-rendering: pixelated;
	will-change: transform, opacity;
}

.decor_sun {
	top: 18dvh;
	left: 7.2vw;
	inline-size: clamp(3rem, 9.1vw, 13rem);
	aspect-ratio: 1 / 1;
	opacity: 0.28;
}

.decor_moon {
	top: 8%;
	left: 12%;
	inline-size: clamp(5.5rem, 11vw, 11.25rem);
	opacity: 0;
}

.cloud_track {
	position: absolute;
	inline-size: 100%;
	will-change: transform;
}

.cloud_track_1 {
	top: 12%;
	right: 80%;
	left: unset;
}

.cloud_track_2 {
	top: 28%;
	right: 10%;
}

.cloud_track_3 {
	top: 46%;
	right: 52%;
}

.cloud_track picture {
	display: block;
}

.cloud {
	display: block;
	inline-size: clamp(6rem, 14vw, 13rem);
	opacity: 0.85;
	image-rendering: pixelated;
	will-change: transform;
}

.star_layer {
	position: absolute;
	inset: 0;
	opacity: 0;
}

.star {
	position: absolute;
	inline-size: clamp(0.9rem, 1.6vw, 1.6rem);
	image-rendering: pixelated;
	will-change: opacity;
}

/* פיזור הכוכבים — כולם בין 4% ל-92% כדי שאף כוכב לא ייחתך בקצה המסך */
.star_1 { top: 8dvh; left: 8dvw; }
.star_2 { top: 15dvw; left: 22dvw; }
.star_3 { top: 6dvw; left: 38dvw; }
.star_4 { top: 21dvw; left: 51dvw; }
.star_5 { top: 11dvw; left: 64dvw; }
.star_6 { top: 27dvw; left: 77dvw; }
.star_7 { top: 5dvw; left: 88dvw; }
.star_8 { top: 34dvw; left: 33dvw; }
.star_9 { top: 39dvw; left: 92dvw; }

.star_8,
.star_9 {
	display: none;
}

.skyline {
	position: absolute;
	left: 0;
	bottom: 0;
	inline-size: 100%;
	block-size: clamp(13rem, 18vw, 18rem);
	object-fit: cover;
	object-position: bottom;
	image-rendering: pixelated;
	will-change: transform, opacity;
}

.skyline_day {
	opacity: 0.28;
}

.skyline_night {
	opacity: 0;
	filter: brightness(0) invert(1);
}

.site_header {
	position: fixed;
	inset-block-start: 0;
	inset-inline: 0;
	z-index: var(--z_header);
	border-block-end: var(--width_border) solid var(--color_line);
	box-shadow: var(--shadow_header);
	-webkit-backdrop-filter: blur(var(--blur_header));
	backdrop-filter: blur(var(--blur_header));
	background-color: transparent;
}

.site_header.scrolled{
	background-color: var(--color_header);
}

.header_inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: var(--space_4);
	margin-block: var(--space_3);
}

.brand{
	font-size: var(--text_lg);
	font-weight: var(--weight_bold);
	white-space: nowrap;
	margin: 0;
}

.brand:focus-visible {
	outline: var(--width_focus) solid var(--color_focus);
	outline-offset: var(--space_1);
}

.brand a{
	text-decoration: none;
}

.brand .brand_pre{
	color: var(--color_text);
	font-weight: var(--weight_medium);
}


.brand .my_name{
	color: var(--color1_deep);
	padding-inline-start: var(--space_2);
	font-weight: var(--weight_bold);
}

.site_header .burger_menu{
	display: none;
}

.nav_list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: clamp(var(--space_7), 2.6vw, var(--space_13));
	margin: 0;
	padding: 0;
	list-style: none;
}

.nav_link {
	color: var(--color_text);
	font-size: var(--text_md);
	font-weight: var(--weight_medium);
	text-decoration: none;
}

.nav_link:hover {
	color: var(--color1);
}

.nav_link.active {
	color: var(--color3_soft);
	font-weight: var(--weight_bold);
}

.nav_link:focus-visible {
	outline: var(--width_focus) solid var(--color_focus);
	outline-offset: var(--space_1);
}

.header_side {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: var(--space_2);
}

.world_row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space_4);
	margin: 0;
}

.world_row >.pixel_label{
	text-align: right;
}


#index #hero{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(var(--card_min), 1fr));
	align-items: center;
	gap: var(--hero_gap_grid);
	max-width: var(--desktop_hero_max);
	min-block-size: 100dvh;
	padding-block-start: calc(var(--header_height) + var(--space_2));
	padding-inline: 0;
}

#index #hero .intro{
	--font_size: var(--font_size_2);
	
	font-size: var(--font_size);
	padding: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--space_10);
	margin-inline-start: var(--space_13);
}

#index #hero .intro .greedings{
	font-size: calc( var(--font_size) * 2.2 );
	margin-block-end: -20px;
	font-weight: var(--weight_bold);
}

#index #hero .intro .aka{
	--my_font_size: calc( var(--font_size) * 1.3 );
	font-size: var(--my_font_size);
	margin-block-start: -10px;
	margin-block-end: -20px;
	color: var(--color_text_muted);
	letter-spacing: -0.2%;
}

#index #hero .intro .aka .en{
	font-family: var(--font_hand_eng);
	font-size: calc( var(--my_font_size) * 0.72 );
}



#index #hero .intro .title{
	margin: 0;
	color: var(--color1);
	font-size: calc( var(--font_size) * 4.2 );
	line-height: var(--line_height_tightest);
	text-shadow: var(--title_text_shadow);
	font-weight: var(--weight_bold);
}

#index #hero .status_line{
	font-weight: var(--weight_thin);
}


.hero_lead {
	max-inline-size: var(--card_min);
	margin: 0;
	color: var(--color_text_muted);
	font-size: var(--text_md);
	line-height: var(--line_height_loose);
	
	font-size: calc( var(--font_size) * 1 );
	line-height: var(--line_height_loose);
	font-weight: var(--weight_thin);	
}

#index #hero .intro .social_links {
	display: flex;
	gap: var(--space_9);
	margin-block-start: var(--space_2);
}

#index #hero .hero_character {
	padding: var(--hero_character_padding);
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--space_4);
	justify-self: center;
	inline-size: 100%;
	max-inline-size: var(--size_character);
	margin-inline-start: var(--hero_character_margin_inline_start);
}

#index #hero .and_thats_it{
	font-size: var(--font_size_13);
}

.character_button {
	display: block;
	inline-size: 100%;
	padding: 0;
	border: none;
	background-color: transparent;
	cursor: pointer;
}

.character_button:focus-visible {
	outline: var(--width_focus) solid var(--color_focus);
	outline-offset: var(--space_3);
}

.character_jumper {
	display: block;
	inline-size: 100%;
}

.character_stack {
	position: relative;
	display: block;
	inline-size: 100%;
}

.character_stack picture {
	display: block;
}

.character_main {
	position: relative;
	z-index: var(--z_content);
	display: block;
	inline-size: 100%;
	block-size: auto;
	image-rendering: pixelated;
}

.character_ghost {
	position: absolute;
	display: block;
	inline-size: 100%;
	block-size: 100%;
	-webkit-mask-image: url("../images/character.png");
	-webkit-mask-position: center;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	mask-image: url("../images/character.png");
	mask-position: center;
	mask-repeat: no-repeat;
	mask-size: contain;
}

.character_ghost.ghost_start {
	--shift: var(--shift_character_min);
	inset-block-start: var(--shift);
	inset-inline-start: calc(var(--shift) * -1);
	background-color: var(--color1);
}

.character_ghost.ghost_end {
	--shift: calc(var(--shift_character_min) * -1);
	inset-block-end: calc(var(--shift) * -1);
	inset-inline-end: var(--shift);
	background-color: var(--color3_soft);
}

#index #bio{
	--bio_font_size: calc( var(--font_size_2) * 0.95 );
	
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: var(--space_7);
	
	color: var(--color_text_muted);
	font-size: var(--bio_font_size);
	font-weight: var(--weight_thin);
	
	line-height: calc( var(--line_height-1) * 1.2 );
	text-align: start;
}

#index #bio p {
	margin: 0;
}


#index #bio a {
	color: inherit;
}



#index #bio .sarcastic_sentence a{
	display: inline-block;
	padding-inline-start: var(--bio_font_size);
	translate: 0 11%;
}

#index #bio > p{
	margin-block-start: 5px;
	margin-block-end: 5px;
}

#index #bio .sarcastic_sentence{
	
	display: block;
	margin-block-start: -2px;
	margin-block-end: 2px;
}

#index #bio > p > .sarcastic_sentence{
	font-size: calc( var(--bio_font_size) * 1.45);
	font-weight: var(--weight_bold);
	
	font-family: var(--font_hand);
	line-height: var(--line_height_extra_tight);
	color: var(--color1_deep);
	translate: 0 5px;	
	
	letter-spacing: 1.5%;
}

#index #bio .bio_step1 {
	text-indent: var(--bio_step1_indent);
	margin-inline-start: var(--bio_step1_margin_start);
}

#index #bio .bio_step1 .sarcastic_sentence{
	text-indent: var(--bio_step1_span_indent);
	margin-inline-start: var(--bio_step1_span_margin_start);
}

#index #bio .bio_step2 {
	text-indent: var(--bio_step2_indent);
	margin-inline-start: var(--bio_step2_margin_start);
}

#index #bio .bio_step2 .sarcastic_sentence{
	text-indent: var(--bio_step2_span_indent);
	margin-inline-start: var(--bio_step2_span_margin_start);	
}

#index #bio .bio_step3 {
	text-indent: var(--bio_step3_indent);
	margin-inline-start: var(--bio_step3_margin_start);
}

#index #bio .bio_step3 .sarcastic_sentence{
	margin-inline-start: 0;
	line-height: var(--line_height_tightest);
	letter-spacing: 0.5%;
	word-spacing: -0.5%;
}

#index #bio .bio_step4 {
	text-indent: var(--bio_step4_indent);
	margin-inline-start: var(--bio_step4_margin_start);
	margin-block-start: var(--bio_step4_margin_block_start);
	letter-spacing: -2%;
}

#index #bio .bio_step4 .sarcastic_sentence{
	text-indent: var(--bio_step4_span_indent);
	margin-inline-start: var(--bio_step4_span_margin_start);	
	text-align: left;
	padding-inline-end: var(--space_13);	
}

.bio_link {
	color: var(--color1);
	text-decoration: underline;
}

.bio_link:focus-visible {
	outline: var(--width_focus) solid var(--color_focus);
	outline-offset: var(--space_1);
}

#root #index section.screen{
	margin-block-start: var(--section_space);
}
.posts_head {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: var(--space_4);
	margin-block-end: var(--space_7);
}

.posts_titles {
	display: flex;
	flex-direction: column;
	gap: var(--space_2);
}

.posts_titles .section_title{
	font-size: calc( var(--text_md_larger) * 1.6 );
}

.posts_titles .sub_title {
	font-size: calc( var(--text_md_larger) * 1.4 );
	display: flex;
	flex-direction: column;
	gap: var(--space_2);
}

.posts_grid {
	margin-block-end: var(--space_7);
}

.posts_grid > [class*="col-"] {
	margin-block-end: var(--gap_grid);
}

.posts_actions {
	display: flex;
	justify-content: center;
}

.about_grid {
	align-items: center;
	row-gap: var(--space_8);
}

.story_body {
	--my_font_size: var(--text_base);
	
	color: var(--color_text);
	font-size: var(--my_font_size);
	line-height: var(--line_height_loose);
}

.story_body h2 {
	margin-block: var(--space_8) var(--space_8);
	color: var(--color_text);
	font-size: calc( var(--my_font_size) * 3.6);
}

.story_body p{
	margin-block: var(--space_8) var(--space_8);
	color: var(--color_text_muted);
	font-size: calc( var(--my_font_size) * 1.2);
	font-weight: var(--weight_thin);
	line-height: var(--line_height_base);
}

.story_body .callout{
	line-height: var(--line_height_extra_tight);
	font-family: var(--font_hand);
	font-size: calc( var(--font_size) * 2);
	color: var(--tone_main);
}

.contact_card {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--space_4);
	max-inline-size: var(--reading_max);
	margin-inline: auto;
	padding-block: var(--space_8);
	padding-inline: clamp(var(--space_5), 5vw, var(--space_8));
	border-radius: var(--radius_panel);
	background-color: rgba(255,255,255,0.42);
	text-align: center;
}

.contact_title {
	margin: 0;
	color: var(--color_text);
	font-size: var(--text_2xl);
}

.contact_links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--space_5);
	margin-block-start: var(--space_5);
	padding: 0;
	list-style: none;
}

.contact_note {
	margin: 0;
	color: var(--color_text_muted);
	font-size: var(--text_sm);
}

.contact_note a {
	color: var(--color1);
}

.contact_note a:focus-visible {
	outline: var(--width_focus) solid var(--color_focus);
	outline-offset: var(--space_1);
}

.site_footer {
	padding-block-start: var(--section_space);
	background-color: transparent;
	color: var(--color_footer_text);
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: var(--space_13);
	padding-inline: var(--page_gutter);
}

.footer_title {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--space_4);
	margin: 0;
	color: var(--color6);
	font-size: calc( var(--font_size) * 4.2 );
	font-weight: var(--weight_medium);
	letter-spacing: var(--tracking_arcade);
	line-height: var(--line_height_extra_tight);
}

.footer_rule {
	max-inline-size: var(--desktop_max);
	margin-block: var(--space_5);
	margin-inline: auto;
	border: 0;
	border-block-start: var(--width_rule) solid var(--color6);
	opacity: 1;
	min-height: 1px;
	width: 100%;	
}

footer .back_to_top{
	font-size: calc( var(--font_size) * 2 );
	font-family: var(--font_hand);
	color: var(--tone_main);
}

.footer_columns {
	margin-block-start: var(--space_8);
	row-gap: var(--space_7);
}

.footer_heading {
	margin-block-end: var(--space_4);
	color: var(--color_footer_heading);
	font-size: var(--text_md);
}

.footer_list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer_list li {
	margin-block-end: var(--space_2);
}

.footer_link {
	color: var(--color_footer_text);
	font-size: var(--text_sm);
	text-decoration: none;
}

.footer_link:hover {
	color: var(--color6);
	text-decoration: underline;
}

.footer_link:focus-visible {
	outline: var(--width_focus) solid var(--color_focus);
	outline-offset: var(--space_1);
}

.footer_brand {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--space_3);
	margin-block-start: var(--space_8);
}

.credits a {
	display: block;
	inline-size: var(--size_footer_logo_w);
	max-inline-size: 100%;
	block-size: 100%;
	background-image: url("../images/logo_300x70.png?v=2");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	color: transparent;
	font-size: var(--text_micro);
	overflow: hidden;
	text-indent: -9999px;
	white-space: nowrap;
}

.credits a:focus-visible {
	outline: var(--width_focus) solid var(--color_focus);
	outline-offset: var(--space_1);
}

.footer_text,
.footer_text .hand_text{
	margin-block-start: var(--space_4);
	color: var(--color_footer_text);
	font-size: var(--text_base_larger);
	letter-spacing: var(--tracking_pixel);
	opacity: 1;
	line-height: var(--line_height_extra_tight);
	display: block;
}

.footer_text .hand_text.less_important{
	opacity: 0.72;
	font-size: var(--text_base);
}

.footer_text .copyrights{
	opacity: 1;
	margin-block: var(--space_10);
	display: block;
	font-size: calc( var(--font_size) * 0.8 );
}

.article_screen {
	padding-block-start: calc(var(--header_height) + var(--space_7));
	padding-block-end: var(--space_9);
}

.article_page .site_footer {
	padding-block-end: calc(var(--section_space) + var(--size_reading_bar));
}

.article_head {
	display: flex;
	flex-direction: column;
	gap: var(--space_4);
	max-inline-size: var(--reading_max);
	margin-inline: auto;
	margin-block-end: var(--space_6);
}

.article_title {
	margin: 0;
	color: var(--color_text);
	font-size: var(--text_2xl);
}

.article_cover {
	display: block;
	inline-size: 100%;
	block-size: auto;
	margin-block-end: var(--space_6);
	border-radius: var(--radius_panel);
	box-shadow: var(--shadow_card);
	image-rendering: pixelated;
}

.article_body {
	max-inline-size: var(--reading_max);
	margin-inline: auto;
	color: var(--color_text_muted);
	font-size: var(--text_md);
	line-height: var(--line_height_loose);
}

.article_body h2 {
	margin-block: var(--space_6) var(--space_4);
	color: var(--color_text);
	font-size: var(--text_xl);
}

.article_body ul {
	margin-block: var(--space_4);
	padding-inline-start: var(--space_5);
}

.article_body li {
	margin-block-end: var(--space_2);
}

.article_quote {
	margin-block: var(--space_6);
	text-align: center;
}

.article_coin {
	display: flex;
	justify-content: center;
	margin-block: var(--space_7);
}

.next_grid {
	max-inline-size: var(--reading_max);
	margin-inline: auto;
	margin-block-start: var(--space_8);
	row-gap: var(--gap_grid);
}

.kit_page {
	background-color: var(--color_base2);
}

.kit_section {
	max-inline-size: var(--desktop_max);
	margin-inline: auto;
	margin-block-end: var(--space_8);
	padding: var(--space_6);
	border-radius: var(--radius_panel);
	background-color: var(--color_surface);
	box-shadow: var(--shadow_card);
}

.kit_row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: var(--space_5);
	margin-block-end: var(--space_5);
}

.kit_item {
	display: flex;
	flex-direction: column;
	gap: var(--space_2);
}

.kit_note {
	margin: 0;
	color: var(--color_text_muted);
	font-family: var(--font_code);
	font-size: var(--text_xs);
}

.kit_swatch {
	inline-size: var(--space_9);
	block-size: var(--space_7);
	border: var(--width_border) solid var(--color_line);
	border-radius: var(--radius_pixel);
	background-color: var(--tone_main);
}

.kit_swatch.base { background-color: var(--color_base); }
.kit_swatch.base2 { background-color: var(--color_base2); }
.kit_swatch.muted { background-color: var(--color_text_muted); }
.kit_swatch.soft { background-color: var(--color_text_soft); }
.kit_swatch.line { background-color: var(--color_line_strong); }

.kit_swatch.sky_hero {
	background-image: linear-gradient(to bottom, var(--sky_hero_start), var(--sky_hero_end));
}

.kit_swatch.sky_posts {
	background-image: linear-gradient(to bottom, var(--sky_hero_end), var(--sky_posts_end));
}

.kit_swatch.sky_dusk {
	background-image: linear-gradient(to bottom, var(--sky_dusk_start), var(--sky_dusk_end));
}

.kit_swatch.sky_night {
	background-image: linear-gradient(to bottom, var(--sky_night_start), var(--sky_night_end));
}

.kit_space {
	block-size: var(--space_4);
	background-color: var(--color1_softer);
}

.kit_space.s1 { inline-size: var(--space_1); }
.kit_space.s2 { inline-size: var(--space_2); }
.kit_space.s3 { inline-size: var(--space_3); }
.kit_space.s4 { inline-size: var(--space_4); }
.kit_space.s5 { inline-size: var(--space_5); }
.kit_space.s6 { inline-size: var(--space_6); }
.kit_space.s7 { inline-size: var(--space_7); }
.kit_space.s8 { inline-size: var(--space_8); }
.kit_space.s9 { inline-size: var(--space_9); }

.kit_shadow {
	inline-size: var(--space_9);
	block-size: var(--space_7);
	border-radius: var(--radius_card);
	background-color: var(--color_surface);
}

.kit_shadow.card { box-shadow: var(--shadow_card); }
.kit_shadow.hover { box-shadow: var(--shadow_card_hover); }
.kit_shadow.panel { box-shadow: var(--shadow_panel); }
.kit_shadow.button { box-shadow: var(--shadow_button); }

.kit_bubble_demo {
	position: relative;
	min-block-size: var(--space_9);
	inline-size: 100%;
}

.kit_toggle {
	display: flex;
	align-items: center;
	gap: var(--space_3);
	color: var(--color_text);
	font-size: var(--text_sm);
}




/*
body.enlarge #index #hero .intro{
	scale: 1.1;
	transform-origin: right;
	margin-inline: 0;
	translate: -7.2% -1.3%;
}

body.enlarge #index #hero .intro .aka{
	scale: 1.2;
	transform-origin: right;
}

body.enlarge #index #hero .status_line{
	scale: 1.3;
	transform-origin: right;
}

body.enlarge #index #hero .hero_character{
	scale: 1.03;
	transform-origin: left top;
	translate: 1% 3%;
}

body.enlarge #index #hero #bio{
	scale: 1.21;
	transform-origin: right;
	line-height: 1.6em;
	translate: -5% 0%;
}
*/