html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
	
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

@keyframes fadeIn {
	from {
	  opacity: 0;
	  transform: translateY(20px);
	}
	to {
	  opacity: 1;
	  transform: translateY(0);
	}
  }
  
  @keyframes slideUp {
	from {
	  transform: translateY(20px);
	}
	to {
	  transform: translateY(0);
	}
  }
  

  
body{
	animation: fadeIn 4s ease-out;
	animation-delay: 1s; 

	cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24" fill="white" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10" /></svg>'), auto;
  }

body{
	background-color: black;
	font-family: 'Alegreya', serif;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-left: 50px;
	margin-right: 50px;
}

.display-1{
    font-family: 'Alegreya', serif;
}

#para1{
	font-family: 'Alegreya', serif;
	margin-top: 6%;
	margin-left:5%;
	color: white;
}

#title{
	color: #97D9FF;
}
#div1{
	
	display: flex;
	align-items: center;
	margin-top: 50px;
	
}
.rounded-image {
	width: 300px; 
	height: 300px;
	border-radius: 50%;
	border: 3px solid white; 
	overflow: hidden;
  }

img.img-fluid{
	
	padding:3%;
	border-radius: 45%;
	transform: scale(1,1);
}
.btn{
	font-family: 'Alegreya', serif;
	display: flex;
	justify-content: start;
	padding: 25px;
	font-size: 2em;
	width: fit-content;
	border-radius: 25%;
	margin-top: 70px;
	
}
li{
	padding: 15px;
	font-family: 'Alegreya', serif;
	margin: 10px;
	font-size: 1.7em;
	letter-spacing: 2px;
	line-height: 35px;
}
a{
	text-decoration: none;
	cursor: pointer;
	
}
.card{

	height: min-content;
	display: flex;
	align-items: baseline;
	
}
.responsive-video {
    width: 100%;
    height: auto;
  }

  @media (min-width: 600px) {
    /* For tablets and larger screens */
    .responsive-video {
      max-width: 50%;
    }
  }

  @media (min-width: 768px) {
    /* For small laptops and larger screens */
    .responsive-video {
      max-width: 20%;
    }
  }

  @media (min-width: 1200px) {
    /* For large screens */
    .responsive-video {
      max-width: 20%;
    }
  }