@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Courier+Prime:ital,wght@0,400;0,700;1,400;1,700&family=Merriweather+Sans:ital,wght@0,300..800;1,300..800&family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Mulish:ital,wght@0,200..1000;1,200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto+Condensed&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap" rel="stylesheet');

body{
	background-color: #f8f2ec;
	color: #282A2B;
	display: flex;
	justify-content: center;
	align-items: center;
}

h1{
	font-family: "Bricolage Grotesque", sans-serif;
	font-weight: 400;
	margin-top: 20px;
	font-size: larger;
}

p{
	font-family: "Bricolage Grotesque", sans-serif;
	font-weight: 200;
	margin-top: 1vw;
}

section{
	width: 35vw;
	transform: translateX(20vw) translateY(10vw) ;
}

time{
	font-family: "Bricolage Grotesque", sans-serif;
	font-weight: 100;
	font-size: small;
}

.button{
	font-family: "Bricolage Grotesque", sans-serif;
	background-color: white;
	opacity: 0.5;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid 282A2B;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #AEA9A4;
	transform: translateX(40vw) translateY(-20vw) ;
}

.left{
	transform: translateX(-40vw) translateY(-20vw) ;
}

.button:hover{
	background-color: #282A2B;
}

.button:hover > a:nth-child(1){
	color: white;
}

.gradient_container{
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: -1;
}
.gradient{
	position: absolute;
	width: 100%; 
	height: 100%; 
	transition: opacity 3s ease-in-out;
}

.top{
	background: linear-gradient(to top,#8F8E99, #D5C6BF, #DAD2CF, #82A4BF);
	opacity: 1;
}
.bottom{
	background: linear-gradient(to top,#70768C, #E69F96, #D4DFE4, #7D91A9);
	opacity: 0;
}

.gradient_text{
	font-family: "Bricolage Grotesque", sans-serif;
	position: absolute;
	top:5vw;
	left: 50%;
	transform: translateX(-50%);
	color: white;
	text-align: center;
	z-index: 10;
}

.location_text{
	font-family: "Bricolage Grotesque", sans-serif;
	position: absolute;
	bottom:5vw;
	left: 50%;
	transform: translateX(-50%);
	color: white;
	text-align: center;
	z-index: 10;
}

.cursor {
	position: absolute;
	width: 30px;
	height: 30px;
	background: white;
	/* border-radius: 50%; */
	transition: transform 0.1s ease-out, clip-path 0.3s ease;
	pointer-events: none;
}

.text {
	font-family: "Bricolage Grotesque", sans-serif;
	position: absolute;
	color: white;
	font-size: 14px;
	font-weight: bold;
	white-space: nowrap;
	transform: translate(60px, 10px);
	pointer-events: none;
}

.shape-circle {
	border-radius: 50%; 
}

.shape-oval{
	height: 15px;
	width: 30px;
	border-radius: 50%;
}

.shape-triangle {
	clip-path: polygon(50% 0%, 0% 100%, 100% 100%); 
	border-radius: 0; 
}

.shape-square {
	border-radius: 0;
}

.shape-diamond {
	clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
	border-radius: 0;
	transform: scale(1.3);
}

.shape-waterdrop {
	border-radius:0% 100% 100% 100%;
	transform: rotate(45deg); 
}

.shape-half-circle {
	width: 30px;
    height: 15px; 
    border-top-left-radius: 15px; 
    border-top-right-radius: 15px; 
	overflow: hidden;
}

.shape-star {
	clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.shape-hexagon {
    height: 25px;
	aspect-ratio: 1/cos(30deg);
	clip-path: polygon(50% -50%,100% 50%,50% 150%,0 50%);
}