@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,400;1,100;1,300&display=swap');

*{
	box-sizing: border-box;
	margin: 0;
}

html {
	--teal: rgba(81, 129, 137, 1);
	--columbia-blue: rgba(175, 203, 219, 1);
	--sinopia: rgba(202, 47, 3, 1);
	--black-bean: rgba(38, 11, 4, 1);
	--dark-green: rgba(14, 43, 33, 1);
	overflow-x: hidden;
}

body {
	font-family: 'Raleway', sans-serif;
	font-size: 27px;
	background-color: var(--black-bean);
	box-shadow: inset 0px 0px 100px 30px black;
}

.head {
	box-sizing: border-box;
	width: 400px;
	height: 400px; 
	margin: 0 auto;
	background-color: var(--dark-green)	;
	border-radius: 100%;
	position: fixed;
	top: -200px;
	left: -200px;
	z-index: 175;
	transform: rotateZ(0deg); /*50deg rotate*/
	transition-duration:  1s;
	box-shadow: 0px 0px 20px 5px var(--dark-green);
}

#menu, #close {
	color: var(--sinopia);
	font-weight: 900;
	font-size: 60px;
	position: absolute;
	text-shadow: 0px 0px 40px var(--sinopia);
}

#menu {
	bottom: 89px;
	right: 95px;
	rotate: 0deg;
}

#close {
	right: 218px;
	top: 268px;
	rotate: 70deg;
}

.main {
	width: fit-content;
	height: fit-content;
	padding-left: 15%;
	padding-top: 5%;
	margin: 0;
	background-color: var(--columbia-blue);
	transform-origin: top left;
	transform: rotate(0deg); /*-30deg*/
	z-index: 125;
	box-shadow: 0px 0px 100px 50px var(--sinopia);
	transition: 1s;
}

.img__title, .art__title{
	font-weight: 900;
	line-height: 1em;
	margin-block: 5px;
	color: var(--sinopia);
}

.art {
	width: 70%;
	margin: 0 auto;
	padding: 20px;
}

.art__title {
	font-size: 3em;
	margin-bottom: 10px;
	line-height: 1em;
	margin-block: 0px 5px;
}

.art__autor {
	font-style: italic;
	font-size: 1.2em;
	color: var(--dark-green);
	margin-block: 0px 1em;
}

.art__content {
	font-weight: 500;
	text-align: justify;
	max-width: 90%; 
	color: var(--black-bean);
}

.img {
	width: 90%;
	margin: 0px;
	border-radius: 30px;
	box-shadow: -3px 3px 10px 2px var(--dark-green);
}

.img__title {
	margin-block-start: 1em;
	margin-block-end: 0.5em;
}

.img__desc {
	margin: 5px 5px 0px 0px;
	padding-bottom: 50px;
	font-size: 0.8em;
	font-style: italic;
	font-weight: 800;
	color: var(--dark-green);
}

.menu__list {
	list-style: none;
	width: fit-content;
	height: fit-content;
	display: inline-block;
	list-style-type: none;
	line-height: 50px;
	position: fixed;
	bottom: 50px;
	left: -250px;
	z-index: 150;
	color: var(--teal);
	transition: 1s;
	transition-delay: 0s;
}

.menu__list--active {
	transition-delay: 1.2s;
	left: 0px;
}

.menu__item a{
	text-decoration: none;
	color: var(--sinopia); 
	text-shadow: 0px 0px 10px var(--sinopia);
}

.menu__item i{
	color: var(--sinopia); 
	text-shadow: 0px 0px 10px var(--sinopia);
}