<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
/* notes*/

body {
    font-family: 'Montserrat';
    margin: 0;
}



/* This is my grid container which holds my website together */

.grid-container {
	display: grid;
	grid-template-rows: 70px 500px auto 270px;  /* order is: nav, header, scroll-area, footer */
    height: 100vh;
	width: 100vw;
}




/* This is my main header in the main content area */

.header {
    box-sizing: border-box;
    background-image: linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.4)),url(../images/back.png); 
	background-position: center;
	background-size: cover;
	
	
}


/*navigation bar right under the header */

.nav {

    background-color: #844D1A;
	padding-left: 30px;
	

}


/* This is my CSS for my main content area (the middle box) */

.content {
    background-color: #FFF; /* Set the color for the main content box */


}


.scroll-area {
    overflow: auto;

}

/* footer stuff */

.footer {
    width: 100%;
	bottom: 0;
	background: linear-gradient(to right, #c5720c, #a4370e);
	color: #fff;
	border-top-left-radius: 125px;
	font-size: 13px;
	line-height: 20px;
	
}

.rowo {
	width: 50%;
	margin: auto;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	padding-top: 30px;
}

.colo {
	flex-basis: 25%;
	padding: 10px;
}

.colo h3{
	width: fit-content;
	margin-bottom: 40px;
	position: relative;
}

.email-id{
	width: fit-content;
	border-bottom: 1px solid #ccc;
	margin: 20px 0;
}




/* fix dropdown texts*/


*{
	margin: 0;
	padding: 0;
	font-family: 'Roboto', sans-serif;
}

/* Home page banner */
.container {
	width: 100%;
	height: 100vh;
	background-image: linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.4)),url(../images/back.png); 
	background-position: center;
	background-size: cover;
	padding-left: 8%;
	padding-right: 8%;
	box-sizing: border-box;
	position: relative;
	
	
}

/* navigation*/

.navi {
	height: 12%;
	display: flex;
	align-items: center;
}

.home{
	width: 30px;
	cursor: pointer;
	padding-right: 15px;
}

.mic{
	width: 30px;
	cursor: pointer;
	padding-right: 15px;
}

.history {
	width: 30px;
	cursor: pointer;
	padding-right: 15px;
}



ol li {
	list-style-type: none;
	padding-top: 8px;
	
}

ul {
	display: inline;
	padding: 25px 0px 0px 0px;
	list-style: none;
}

ul li {
	font-family: Arial;
	font-size: 20px;
	font-weight: bold;
	display: inline-block;
	margin-right: -20px;
	position: relative;
	padding: 30px 80px 17px; /*length and width and space between the words*/
}



ul li:hover{
	background: grey;
}

a:link{color:#FFFFFF;}
a:visited{color:#FFFFFF;}
a:hover{color:#1c1a54;}
a:active{color:#FFFFFF;}

a {
	text-decoration: none;
}
	
ul li ul{
	padding: 0px; /*padding between the artist box and the dropdown*/
	position: absolute;
	top: 70px; /*The dropdown menu padding*/
	left: 0px; /*moves the dropdown to the left*/
	width: 246px; /*The dropdown width*/
	display: none;
	visibility: hidden;
	z-index: 1;
}

ul li ul li {
	background: grey;
	display: block; 
	opacity: 85%;
}

ul li ul li:hover { background: #85b7ec;}

ul li:hover ul {
	display: block;
	visibility: visible;
}

/* Home page cards*/
.row{
	display: flex;
	height: 75%;
	align-items: center;
}

.col{ 
	flex-basis: 50%;
}
.card {
	width: 300px;
	height: 350px;
	display: inline-block;
	border-radius: 50px; /* card corners */
	padding: 15px 25px; /* card text */
	box-sizing: border-box;
	cursor: pointer;
	margin: 20px 20px; /* space between the cards*/
	background-position: center;
	background-size: cover;
	float: right;/* position on the page*/
	margin-right: 40px; /* spacing*/
	transition: transform 0.5;
}

.card1 {
	background-image: url(../images/historycard.png); /* note - create a canva image for each card*/
	
}

.card2 {
	background-image: url(../images/musiccard.png); /* note - create a canva image for each card*/
	
}

.card3 {
	background-image: url(../images/artistcard.png); /* note - create a canva image for each card*/
	
}

.card4 {
	background-image: url(../images/moviecard.png); /* note - create a canva image for each card*/
	
}

.card:hover{
	transform: translateY(-10px);
		
}


/*text*/

h1{
	font-size: 120px;
	color: white; 
}

p{
	font-size: 13px;
	color: #D7DAE5;
	padding-left; 100px;
}



h6 {
	color: white;
}

.pa {
	font-size: 18px;
}

.par {
	font-size: 18px;
	color: black;
}

i {
	font-size: 30px;
	padding: 10px;
	color: white;
}

hr {
	margin-right: 80px;
	margin-left: 80px;
}

h6 {
	text-align: center;
	font-size: 11px;
	padding-top: 5px;
}

.underline{
	width: 100%;
	height: 5px;
	background: #B7B7B7;
	border-radius: 3px;
	position: absolute;
	top: 25px;
	left: 0;
	overflow: hidden;
	
	
	
}

h2 {
	text-align: center;
	color: white;
	font-size: 90px;
	padding-top: 150px;
	
}

h4 {
	padding-top: 20px;
	padding-bottom: 20px;
}



.underline span {
	width: 15px;
	height: 100%;
	background: #fff;
	border-radius: 3px;
	position: absolute;
	top: 0;
	left: 10px;
	animation: moving 2s linear infinite;
}

@keyframes moving{
	0%{
		left: -20px;
	}
	100%{
		left: 100%;
	}
}

.maari {
	width: 25%;	
	padding-left: 760px;
	position: absolute;
}

.aga{
	width: 25%;	
	padding-left: 760px;
	position: relative;
}

#textbox 
{ 
	border-style: none;
	width: 900px; 
	height: auto; 
	text-align: justify; 
	background-color: #F8F8F8; 
	word-wrap: break-word; /* words won't go from the boundry */ 
	margin: 30px 20px auto; 
	/* top, left, bottom of the box*/ 
	padding: 20px 20px 30px; 
	/* top, left, bottom of the text*/ 
	float: left; 
	padding-left: 40px;
} 

.ani {
	width: 19%;
	padding-top: 30px;
	padding-left: 250px;
	padding-bottom: 80px;
	
}



.kolaveri {
	padding-top: 30px;
	padding-left: 300px;
	padding-bottom: 30px;
	float: left;
}

.donu {
	float: right;	
	padding-top: 30px;
	padding-bottom: 30px;
	padding-right: 300px;
}

.rahman {
	width: 20%;	
	padding-top: 30px;
	padding-left: 250px;
	padding-bottom: 200px;
}

.jaiho {
	float: right;
	padding-top: 50px;
	padding-right: 300px;
	padding-bottom: 30px;
		
}

.roja {
	
	float: left;
	padding-top: 50px;
	padding-left: 300px;
	padding-bottom: 30px;
	
	
}

.kolly {
	width: 38%;	
	margin-top: 150px;
	margin-left: 110px;
	margin-bottom: 250px;
	padding-right: 80px;
	float: right;

	
}
</pre></body></html>