*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Druk Wide";
}
.container {
    padding: 2rem;
}
body{
    background-color: #ffecbb;
    overflow-x: scroll;
}
@font-face {
    font-family: 'Druk Wide';
    src: url('DrukWide-Bold.woff2') format('woff2'),
        url('DrukWide-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
nav{
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	padding: 20px 8%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

nav .logo{
	width: 160px;
}
nav ul li{
	list-style: none;
	display: inline-block;
	margin-left: 40px;
}
nav ul li a{
	text-decoration: none;
	color: black;
	font-size: 17px;
	transition: 0.5s;
}
nav ul li a:hover{
    -webkit-text-stroke: 2px #ff9900;
    color: transparent;
    }
h1{
    font-size: 50px;
    font-weight: 600;
    text-align: center;
    transition: 0.5s;
}

.slider-wrapper {
    position: relative;
    max-width: 70rem;
    margin: 0 auto;
}

.slider {
    display: flex;
    aspect-ratio: 16 / 9;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    box-shadow: 0 1.5rem 3rem -0.75rem hsla(0, 0%, 0%, 0.25);
    border-radius: 0.5rem;
    border-style: solid;
    border-width: 1rem;
}
.slider img {
    flex: 1 0 100%;
    scroll-snap-align: start;
    object-fit: cover;
}
.slider2 {
    display: flex;
    aspect-ratio: 16 / 9;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    box-shadow: 0 1.5rem 3rem -0.75rem hsla(0, 0%, 0%, 0.25);
    border-radius: 0.5rem;
    border-style: solid;
    border-color: #ff9900;
}
.slider2 img {
    flex: 1 0 100%;
    scroll-snap-align: start;
    object-fit: cover;
}
.slider3 {
    display: flex;
    aspect-ratio: 16 / 9;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    box-shadow: 0 1.5rem 3rem -0.75rem hsla(0, 0%, 0%, 0.25);
    border-radius: 0.5rem;
    border-style: solid;

}
.slider3 img {
    flex: 1 0 100%;
    scroll-snap-align: start;
    object-fit: cover;
}
.slider4 {
    display: flex;
    aspect-ratio: 16 / 9;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    box-shadow: 0 1.5rem 3rem -0.75rem hsla(0, 0%, 0%, 0.25);
    border-radius: 0.5rem;
    border-style: solid;
}
.slider4 img {
    flex: 1 0 100%;
    scroll-snap-align: start;
    object-fit: cover;
}

.slider-nav {
    display: flex;
    column-gap: 1rem;
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}
.slider-nav a {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background-color: #fff;
    opacity: 0.75;
    transition: opacity ease 250ms;
}
.slider-nav a:hover {
    opacity: 1;
}

.photo h1 {
    margin-top: 120px;
    letter-spacing: 1rem;
    transition: 0.5s;
}
h1:hover{
    -webkit-text-stroke: 2px #ff9900;
    color: transparent;
    }
.th {
border-style:double;
border-width: 0.5rem;
border-radius: 3rem;
border-color: gray;
border-top-left-radius: 10rem;
border-top-right-radius: 10rem;
}
.slider-wrapper{
    border-style:double;
border-width: 0.5rem;
border-radius: 1rem;
}
.rd {
    border-style: double;
    border-width: 0.5rem;
    border-radius: 10rem;
}
p {
    justify-content: center;
    margin: auto;
    text-align: center;
}
.photo p{
    justify-content: center;
    margin: auto;
}
span {
    color: #ff9900;
}

@media (max-width: 475px) {
    .hero {
        max-width: 475px;
    }
    .slider-nav a {
        width: 0.5rem;
        height: 0.5rem;
    }
    nav ul li a{
        font-size: 15px;
    }
    nav{
        justify-content: center;
        display: flex;
        padding: 10px 0px;
        width: 390px;
    }
    nav .logo{
        width: 150px;
    }
    .slider-nav {
        display: flex;
        column-gap: 0.5rem;
    }
.slider img {
    width: 25%;
}
.slider3 img{
    width: 25%;
}
.slider2 img{
    width: 25%;
}
.slider4 img{
    width: 25%;
}
.photo h1 {
    font-size: 38px;
}

}