@keyframes aniName {
	from { font-size: 0vw;}
	to { font-size: 12vw;}
}

@keyframes opacity {
	0% { opacity: 0; }
	50% { opacity: 0; }
	100% { opacity: 1; }
}

/*
@font-face {
	font-family: 'Sacramento';
	font-style: normal;
	font-weight: 400;
	src: url('Sacramento.woff2') format('woff2');
}

@font-face {
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 400;
	src: url('./Poppins.woff2') format('woff2');
}

@font-face {
	font-family: 'Cinzel';
	font-style: normal;
	font-weight: 400;
	src: url('./Cinzel.woff2') format('woff2');
}

@font-face {
	font-family: 'Babylonica';
	font-style: normal;
	font-weight: 400;
	src: url('Babylonica.woff2') format('woff2');
}
*/

::selection {
	background: yellow;
	color: black;
}

:root {
	--one: 0,0,0;
	--two: 48,48,48;
	--three: 230,230,230;
	--four: 255,240,219;
	--five: 255,255,255;
}

*{
	margin-block: 0;
	font-family: 'Poppins', sans-serif;
	scroll-behavior: smooth;
}

body {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	background: rgb(var(--one));
	color: white;
}

a {
	text-decoration: none;
	color: rgb(var(--five));
}

a:hover {
	color: rgb(var(--four));
	-webkit-text-stroke-color: black;
	-webkit-text-stroke-width: 0.5px;
	text-shadow: 0px 0px 20px black;
}

.reverse {
	transform: scale(-1, 1);
    -moz-transform: scale(-1, 1);
    -webkit-transform: scale(-1, 1);
    -o-transform: scale(-1, 1);
    -ms-transform: scale(-1, 1);
    transform: scale(-1, 1);
}

.navbar {
	background: rgb(var(--one));
	height: 15vmax;
	width: 100vw;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	align-items: center;
	position: fixed;
	z-index: 100;
	backdrop-filter: blur(2px);
	box-shadow: 0px 1px 600px rgb(var(--four));
	transition: all 0.15s ease-in-out;
}

.navbar .logo #rr {
	height: 120px;
	width: 195px;
}

.navbar .navlinks {
	display: flex;
	justify-content: space-around;
	align-items: center;
}

.navbar .navlinks a {
	margin: 0 8px;
	font-size: 20px;
}

.title {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	height: calc(100vh - 20vh);
	padding-top: 20vh;
}

p.pre-title {
	margin-left: -9em;
	margin-bottom: -1em;
	font-size: 4vw;
	font-family: 'Babylonica';
	animation-name: opacity;
	animation-iteration-count: 1;
	animation-duration: 2s;
	animation-timing-function: linear;
}

p.title-name {
	font-size: 12vw;
	animation-name: aniName;
	animation-iteration-count: 1;
	animation-duration: 1.5s;
	animation-timing-function: linear;
	text-align: center;
	position: relative;
	font-family: 'Cinzel';
	color: rgb(var(--four));
	z-index: -1;
}

.many-names {
	display: inline-block;
	position: absolute;
}

#hindi {
	font-size: 2vw;
	display: inline-block;
	position: absolute;
	margin-top: -2em;
	animation-name: opacity;
	animation-iteration-count: 1;
	animation-duration: 2s;
	animation-timing-function: linear;
}

#urdu {
	font-size: 2vw;
	display: inline-block;
	position: absolute;
	margin-left: 4.45em;
	margin-top: -2em;
	animation-name: opacity;
	animation-iteration-count: 1;
	animation-duration: 2s;
	animation-timing-function: linear;
}

p.post-title {
	margin-left: 11em;
	margin-top: -1.5em;
	font-size: 3vw;
	font-family: 'Kristi';
	animation-name: opacity;
	animation-iteration-count: 1;
	animation-duration: 2s;
	animation-timing-function: linear;
}

.about {
	display: grid;
	grid-template: 1fr / 1fr;
	justify-content: center;
	align-content: center;
	align-items: center;
	justify-items: center;
	background: rgba(var(--three),0.5);
	padding: 24px 180px;
	border-radius: 8px;
	box-shadow: 0px 0px 10px rgba(var(--one),1);
	margin: 12px;
	margin-top: 18px;
}

.about h1 {
	font-family: 'Babylonica';
	font-size: 120px;
	color: black;
}

.discography {
	display: grid;
	grid-template: 1fr / 1fr;
	justify-content: center;
	align-content: center;
	align-items: center;
	justify-items: center;
	background: rgba(var(--three),0.5);
	padding: 24px;
	border-radius: 8px;
	box-shadow: 0px 0px 10px rgba(var(--one),1);
	margin: 12px;
}

.discography h1 {
	font-family: 'Babylonica';
	font-size: 120px;
	color: black;
}

.disco-list {
	display: grid;
	grid-template: 1fr / 1fr 1fr 1fr 1fr; 
	grid-gap: 16px;
	justify-content: center;
	align-content: center;
	justify-items: center;
	align-items: center;
}

a.disco-link {
	color: black;
	grid-area: 5 / 1 / 6 / span 4;
	font-size: 24px;
}

a.disco-link:hover {
	-webkit-text-stroke-color: rgb(var(--five));
	-webkit-text-stroke-width: 0.25px;
	color: black;
}

img#big {
	height: 25vw;
	width: 17vw;
}

img#small {
	height: 17vw;
	width: 17vw;
}

.disco-list a:hover img {
	box-shadow: 0px 0px 10px black;
	-webkit-filter: brightness(55%);
}

.footer {
	display: grid;
	grid-template: 1fr / 1fr 1fr 1fr;
	background: rgba(var(--three),0.5);
	padding: 24px;
	border-radius: 8px;
	box-shadow: 0px 0px 10px rgba(255,255,255,0.5);
	margin: 12px;
	grid-gap: 32px;
}

.footer div .footer-logo a, h1 {
	color: black;
	text-align: center;
	font-family: 'Cinzel';
}

.footer div .footer-logo:hover{
	text-shadow: 0px 0px 20px black;
	-webkit-text-stroke-color: white;
	-webkit-text-stroke-width: 0;
}

.footer div {
	display: flex;
	justify-content: center;
	align-items: center;
}

.footer .social-links {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.footer .social-links a {
	font-size: 20px;
	padding: 8px 0 8px 32px;
	color: black;
}

.footer .social-links h1 {
	font-family: 'Babylonica';
	font-size: 42px;
	color: black;
	margin-top: -16px;
}

.custom {
	display: flex;
	flex-direction: column;
	font-size: 0.75vw;
}

#heart {
	color: red;
}

#copy {
	color: rgba(var(--one),0.95);
}

#copy:hover {
    -webkit-text-stroke-width: 0;
}

.not-accessible {
    display: none;
}