body{
	background: black;
}
img{
	float:left;
	width: 10%;
	height: 10%;
	margin: 30px;
}
ul{
	display: inline-block;
	float: right;
	margin: 25px;
}
li{
	display: inline-block;
	margin: 25px;
	font-size: 36px;
}
li a{
	text-decoration: none;
	transition: color 2s, font-size 2s;

}
li a:hover{
	color: white;
	font-size: 40px;
}

.slide-container
	{
		position: relative;
		width: 90%;
		margin: 10px;
	}
	.slide img
	{
		width:100%;
	}
	.slide
	{
		display: none;
	}
	.arrow
	{
		cursor:pointer;
		position: absolute;
		top:55%;
		color: black;
		background: rgba(255, 255, 255, 0.6);
		padding: 19px;
		border-radius: 50%;
		font-size: 25px;
		font-weight: bold;

	}
	.next
	{
		right:10px;
	}
	.prev
	{
		left: 10px;
	}
	.caption
	{
		color: white;
		font-size: 30px;
		font-weight: bold;
		position: absolute;
		bottom: 0;
		width: 100%;
		text-align: center;
		background-color: rgba(211, 198, 198, 0.615);
		padding: 5px 0px;
	}
	.uc{
		margin: 50px auto;
		color: white;
	}
	.accords{
		color: white;
	}
	.card-container {
            padding: 0 5% 40px;
        }
        
        .card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            /*height: 100%;*/
            margin-bottom: 25px;
        }
        
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        
        .card-img-top {
            height: 250px;
            object-fit: cover;
        }
        
        .card-body {
            padding: 20px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        
        .card-title {
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .card-text {
            color: #666;
            margin-bottom: 15px;
            flex-grow: 1;
        }
        
        .price {
            font-weight: bold;
            color: var(--accent-color);
            font-size: 18px;
            margin-bottom: 15px;
        }
        
/*        .btn-primary {
            background-color: var(--primary-color);
            border: none;
            padding: 8px 20px;
            border-radius: 4px;
            transition: background-color 0.3s;
        }
        
        .btn-primary:hover {
            background-color: var(--accent-color);
        }*/
	@media only screen and (max-width: 600px) {
  img{
	float:left;
	width: 30%;
	height: 30%;
	margin: 30px;
}
li{
	display: block;
	margin: 25px;
	font-size: 36px;
}
.slide-container
	{
		position: relative;
		width: 80%;
		margin: 10px;
	}

}