*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-optical-sizing: auto;
}
nav{
	width: 100%;
	padding: 40px 50px;
	display: flex;
	background-color: black;
}
.logo h1{
	font-size: 27px;
	color: gold;
	text-align: center;
	background-color: black;
	padding: 30px;
}
ul{
	list-style: none;
	display: flex;
	gap: 1rem;
	max-width: 100%;
	margin: 0 auto;
}
li a{
	color: gold; 
	font-weight: 600;
	border: none;
	padding: 15px 20px;   
	transition: all 0.3s ease;
}
li a:hover{
	color: white;
	border-color: white;
}
.active{
	color: white;
	border-color: white;
}
.container{
	max-width: 100%;
	margin: 0 auto;
}
.section {
    padding: 20px;
}

.section-title {
    font-size: 20px;
    margin-bottom: 30px;
}

.content-box {
    display: flex;
    gap: 20px;
}

.content-box img {
    width: 300px;
    height: auto;
    border-radius: 10px;
}
.button {
    display: inline-block;
    padding: 5px 10px;
    background: black;
    color: gold;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 16px;
    position: relative;
    border: 3px solid transparent; 
	transition: background 0.3s ease;
}
.button:hover {
    background: black;
    transform: scale(1.05);
}
.button::before{
	content: ">";
	color: black ;
	position: absolute;
	right: -20px;
	font-size: 16px;
}
.button::after {
	content: "<";
	color: black;
	position: absolute;
	left: -20px;
	font-size: 16px;
}
