* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--text-color: #FAFAFA;
	--background-color: #18181B;
	--share-buton-background-color: #FFFFFF;
	--share-button-icon-color-hover: rgba(255, 255, 255, 0.2);
	--theme-switcher-span-background-color: #36393F;
	--theme-switcher-span-color-hover: rgba(255, 255, 255, 0.2);
	--theme-switcher-button-icon-background-color: #FFFFFF;
	--theme-switcher-button-icon-color-hover: rgba(255, 255, 255, 0.2);
	--link-button-text-color: #FFFFFF;
	--link-button-background-color: rgba(255,255,255,0.1);
	--link-button-background-color-hover: #B58926;
	--social-media-icon-color-hover: rgba(255, 255, 255, 0.2);

	font-size: 62.5%;
}

body {
	background-color: var(--background-color);
}

body * {
	font-family: "Roboto", sans-serif;
	color: var(--text-color);
}

#container {
	width: 100%;
	max-width: 588px;
	margin: 56px auto 0px;
	padding: 0 24px;
}


#profile {
	position: relative;
	text-align: center;
	padding: 2.4rem 0;

}

#profile img {
	transition: transform 0.3s;
}

#profile h1 {
	font-weight: 500;
	font-size: 3.6rem;
	color: var(--text-color);
	line-height: 4rem;
	margin-top: 2.4rem;
}

#profile h2 {
	font-weight: 400;
	font-style: italic;
	font-size: 1.8rem;
	color: #c4c4c4;
	line-height: 24px;
	margin-top: 8px;
}

#profile img:hover {
	transform:scale(1.1);
}

ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding: 24px 0;
}


ul li a {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px 24px;
	color: var(--link-button-text-color);
	background-color: var(--link-button-background-color);
	border-radius: 8px;
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	text-decoration: none;
	font-weight: 500;
	font-size: 1.6rem;
	text-align: center;
	transition: transform 0.3s;
}

ul li a:hover {
	transform: scale(1.1);
	color: var(--background-color);
	background-color: var(--link-button-text-color) ;

	box-shadow: 0 0 45px #FAFAFA;
}

#social-media {
	display: flex;
	justify-content: center;
	padding: 24px 0;
	font-size: 2.4rem;
}

#social-media a {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
	transition: transform 0.3s;
	border-radius: 50%;

	text-decoration:none ;
}

#social-media a:hover {
	transform: scale(1.2);

}

footer {
	padding: 24px 0;
	text-align: center;
	font-size: 14px;
}

@keyframes slide-in {
	from {
		left: 0;
	}

	to {
		left: 50%;
	}
}

@keyframes slide-back {
	from {
		left: 50%;
	}

	to {
		left: 0;
	}
}

.container {
  text-align: center;
  margin-top: 50px;
}

.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.5);
}

.modal-content {
  background-color: #1a1a1d;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 600px;
  border-radius: 10px;
  position: relative;
	text-align: center;
	display: flex;
	flex-direction: column;
}

#modal-content {
	display: flex;
	margin: auto;
	flex-direction: column;
	justify-content: space-around;
	gap: 20px;	
}

#modalTitle {
	
	font-size: 2.8rem;
}

#modalDescription {
	font-size: 1.6rem;
}

#modalPrice {
	font-size: 2.2rem;
	font-weight: bold;
}

.close {
  color: #aaa;
	align-self: end;
	font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #FFF;
  text-decoration: none;
  cursor: pointer;
}

/* .buy-btn {
  display: inline-block;
  background-color: #4CAF50;
  color: white;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 10px;
} */
.buy-btn {
  display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px 24px;
	background-color: #4CAF50;
	font-weight: 600;
	/* color: var(--link-button-text-color); */
	/* background-color: var(--link-button-background-color); */
	border-radius: 8px;
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	text-decoration: none;
	font-size: 1.6rem;
	text-align: center;
	transition: transform 0.3s;
}

.buy-btn:hover {
  filter: brightness(1.1);
}

.openModalBtn {
	display: flex;
	width: 100%;
	cursor: pointer;
	align-items: center;
	justify-content: center;
	padding: 16px 24px;
	color: var(--link-button-text-color);
	background-color: var(--link-button-background-color);
	border-radius: 8px;
	border: none;
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	text-decoration: none;
	font-weight: 500;
	font-size: 1.6rem;
	text-align: center;
	transition: transform 0.3s;
}

.openModalBtn:hover {
	transform: scale(1.1);
	color: var(--background-color);
	background-color: var(--link-button-text-color) ;

	box-shadow: 0 0 45px #FAFAFA;
}