@font-face {
	font-family: "DSEG7";
	src: url("/public/css/DSEG7Classic-BoldItalic.woff2") format("woff2");
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

:root {
	--theme-gray: rgb(192, 192, 192);
	--theme-purple: rgb(58, 12, 62);
}

@keyframes spin {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

body {
	min-height: 100vh;
	margin: 0;
	font-family: "Sora", sans-serif;
	
	text-align: center;
	
	background-image: url("/public/img/mazrry-background-silver.jpg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.main-mazrry {
	img {
		width: 600px;
		max-width: 100vw;
	}
}

.we-build {
	padding: 0px 10%;
	font-size: 26px;
}

.join {
	width: fit-content;
	margin: auto;
	transform: translate(250px, 0px);
	
	font-weight: 700;
	font-size: 26px;
}

#audioButtonDiv {
	position: relative;
	left: 290px;
	top: 0px;
	width: fit-content;
	margin: auto;
	
	button.play, button.pause {
		width: 50px;
		height: 50px;
		/* border-radius: 100px; */
		background-color: transparent;
		border: none;
		color: #000;
		font-size: 30px;
		cursor: pointer;
	}
}

.vynil-container {
	width: fit-content;
	margin: auto;
	
	span {
		position: relative;
		left: 126px;
		top: 207px;
		color: #FFF;
		font-size: 18px;
	}
	
	img {
		width: 400px;
	}
}

.code {
	font-size: 26px;
	font-weight: 700;
}

.ma {
	/*position: fixed;
	right: 40px;
	bottom: 20px;*/
	
	padding-right: 10px;
	text-align: right;
	
	img {
		width: 100px;
		
		transition: transform 300ms ease-in-out;
		
		&:hover {
			transform: scale(1.2);
		}
	}
}







@media (max-width: 650px) {
	.we-build {
		font-size: 20px;
		
		br {
			display: none;
		}
	}
	
	.join {
		width: 100%;
		text-align: right;
		transform: unset;
		
		padding-right: 50px;
		box-sizing: border-box;
		
		font-size: 18px;
	}
	
	#audioButtonDiv {
		position: static;
		width: fit-content;
		width: 100%;
		text-align: right;
		
		padding-right: 50px;
		box-sizing: border-box;
		
		button.play, button.pause {
			width: 30px;
			height: 30px;
			
			font-size: 20px;
		}
	}
	
	.vynil-container {
		width: fit-content;
		margin: auto;
		
		span {
			position: relative;
			left: 63px;
			top: 107px;
			color: #FFF;
			font-size: 12px;
		}
		
		img {
			width: 200px;
		}
	}
	
	.code {
		font-size: 16px;
		font-weight: 700;
	}
}

@media (display-mode: standalone) {
	.main-mazrry {
		padding-top: 50px;
	}
}