*{
	box-sizing: border-box;
	font-family: 'Nokia Pure Headline';
}
body{
	position:relative;
	margin:0;
	justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: white;
   
}
audio {
    width: 300px; /* Adjust the width as needed */
    height: 40px; /* Adjust the height as needed */
	
}
h1{
	margin-left:40;
}
main{
	margin-left:20px;
	margin-right:20px;
	margin-top:20px;
}
header{
	background-color:#009898;
	text-align:left;
	padding:0px;
	color:red;
	margin-left:0;

	
}
.navbar{
	background-color: #2f2a85;
	height:50px;
}
aside{
	width:50%;
	display: flex; 
	float:left;
	padding:10px;
	margin-top:30;
	font-family: 'Nokia Pure Headline';

}
	
section{
	width:50%;
	display: flex; 
	float:center;
	padding:10px;
	margin-top:10;
	
	font-family: 'Nokia Pure Headline';
	margin-left:20;
}

article{
	width:50%;
	display: flex; 
	float:right;
	padding:10px;
	margin-top:10;
	
	font-family: 'Nokia Pure Headline';
	margin-left:20;
}


.navbar ul{
list-style-type:none;
background-color:#2f2a85;
padding:0px;
padding-bottom:0px;
margin:0px;
overflow:hidden;

}
.navbar a{
	color:white;
	text-decoration: none;
	text-align:center;
	padding:4px;
	display: block;
	font-size: 20px;
	margin-left:40;
	margin-bottom:0px;
}
.navbar a:hover{
background-color: #FF746C ;
}
.navbar li{
	float:left;
}

footer{
	display:block;
	height:50px;
	clear:both;
	background-color:#2f2a85;
	text-align:center;
	padding:0px;
	position:fixed;
	bottom:0;
	width:100%;
	font-family: 'Nokia Pure Headline';
}
html {
  height:100%;
  font-family: 'Nokia Pure Headline';
  scroll-behavior: smooth;
}

@media screen and (max-width:600px){
	aside,section, article{
		width:100%;
	}
}

.carousel {
    position: relative;
    width: 300%;
    max-width: 1000px;
    overflow: hidden;
    border-radius:0px;
	margin-left:200;

		
}

.carousel-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
	
}

.card {
    flex: 0 0 100%;
    box-sizing: border-box;
    padding: 5px;
    background-color: white;
    border-radius: 0px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    font-size: 1.5em;
	
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: Cyan;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 1.5em;
}

.carousel-button.prev {
    left: 1px;
}

.carousel-button.next {
    right: 1px;
}
img{
	  border-radius: 2%;
}


