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

html,
body {
	height: 100%;
	width: 100%;
}

main {
	padding-top: 15vh;
	display: flex;
	justify-content: flex-start;
	width: 100vw;
	height: 100vh;
	font-family: Helvetica, sans-serif;
	position: relative;
	z-index: 0;
}

#left {
	width: 40vw;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	padding-bottom: 5vw;
	padding: 0 5vw;
}

#left-top h1 {
	font-size: 7vw;
	font-weight: 500;
}

#left-bottom {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 1.5vw;
	padding-bottom: 4vw;
	width: 60%;
}

span {
	border: 0.2px solid black;
	padding: 0.5rem;
	border-radius: 50px;
	width: 7rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#color1,
#color2 {
	height: 1rem;
	width: 1rem;
	border-radius: 50%;
}

#color1 {
	background-color: #deb888;
}

#color2 {
	background-color: #a12a20;
}

#left-bottom h5 {
	font-weight: normal;
	font-size: 0.8rem;
}

#left-bottom h4 {
	font-weight: bolder;
}

#left-bottom p {
	font-weight: normal;
	font-size: 0.6rem;
}

#tilt-text {
	display: flex;
	justify-content: end;
	align-items: flex-end;
	writing-mode: vertical-rl;
	padding: 1rem;
}

#tilt-text h3 {
	rotate: 180deg;
	font-weight: bolder;
	font-size: 1.2rem;
	letter-spacing: 1px;
	margin-bottom: 2.5rem;
}

#right {
	width: 30vw;
	max-height: 85vh;
	display: flex;
	padding-top: 2rem;
	z-index: 1;
	overflow-y: hidden;
}

#right-main {
	max-height: 85vh;
	max-width: 100%;
}

#rating {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 0;
}

#rating h4 {
	font-size: 0.8rem;
	font-weight: 600;
}

#rating > div {
	display: flex;
	align-items: center;
	gap: 0.1rem;
	padding-right: 1rem;
}

#rating h6 {
	font-weight: normal;
	font-size: 0.7rem;
}

#rating i {
	font-size: 0.5rem;
}

#model img {
	z-index: 2;
	width: 100%;
	height: auto;
	object-fit: cover;
	object-position: bottom center;
}

#right-circle {
	position: absolute;
	top: 45%;
	right: 22%;
	height: 7rem;
	width: 7rem;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 3;
	background-color: #313131;
	color: white;
	cursor: pointer;
}

#right-circle h3 {
	font-size: 1rem;
	font-weight: 500;
}

@media screen and (max-width: 768px) {
	main {
		padding-top: 10vh;
		flex-direction: column;
	}

	#left {
		width: 100vw;
		height: 35vh;
		display: flex;
		flex-direction: column;
		justify-content: space-around;
		padding-bottom: 5vw;
		padding: 0 5vw;
	
	}

	#left-top {
		width: 100%;
	}

	#left-top h1 {
		font-size: 10vw;
		width: 50%;
	}

	#left-bottom {
		width: 60%;

		justify-content: end;
		gap: 5vw;
		align-self: self-end;
		text-align: end;
	}

	span {
		align-self: flex-end;
	}

	#tilt-text {
		display: flex;
		justify-content: end;
		align-items: center;
		padding: 1rem;
		width: 10vw;
		height: 55vh;
		position: absolute;
		z-index: 4;
		bottom: 0;
	}

	#tilt-text h3 {
		font-size: 1.3rem;
	}

	#right {
		position: absolute;
		bottom: 0;
		right: 0;
		width: 90vw;
		height: 55vh;
		display: flex;
		padding-top: 2rem;
		z-index: 1;
		overflow-y: hidden;
	}

	#right-main {
		width: 80%;
		justify-content: center;
	}

	#right-circle {
		top: 40%;
		right: 10%;
		height: 5rem;
		width: 5rem;
	}

	#right-circle h3 {
		font-size: 0.5rem;
	}
}
