@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


body {
    position: relative;
    font-family: "Poppins";
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 100vh;
    width: 100%;
}

body::before{
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: rgb(0, 0, 0, 0.50);
    z-index: -1;
}

*{
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
}

header{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    max-width: 1650px;
    margin: 0 auto;
    padding: 2.5em 1em;
}

header .left,
header .right{
    display: flex;
    align-items: center;  
    margin-left: 50px;
}

header .left a:nth-child(1) {
    color: white !important;
}

header a {
    color: #adadad;
    font-size: 2em;
    display: flex;
}

header .left a {
    margin-right: 80px;
}

header .right a {
    margin-right: 70px;
}

header .right .time{
    color: white;
    font-weight: 200;
    font-size: 2em;
    margin-right: 50px;
}



#carousel {
	position: relative;
	height: 85%;
}

#carousel div {
	position: absolute;
	transition: transform 0.4s, left 0.4s, opacity 0.4s, z-index 0s;
	opacity: 1;
}

#carousel img {
	width: 175px;
    border-radius: 30px;
	transition: width 0.4s;
    cursor: pointer;
}

#carousel .hideLeft {
	left: -190px;
	opacity: 0;
}


#carousel .hideLeft img {
	width: 200px;
}

#carousel .hideRight {
	left: 100%;
	opacity: 0;
}

#carousel .hideRight img {
	width: 200px;
}

#carousel .prev {
	z-index: 5;
	left: 80px;
}

#carousel .prev img {
	width: 110px;
}

#carousel .prevLeftSecond {
	z-index: 4;
	left: -55px;

}

#carousel .prevLeftSecond img {
	width: 110px;
}

#carousel .selected {
    width: 175px;
	z-index: 1;
	left: 215px;
}

#carousel .selected img {
    border : 3px solid transparent;
    box-shadow: 0px 0px 0px 3px rgb(216,216,216);
}

#carousel .next {
	z-index: 5;
	left: 415px;
}

#carousel .next img {
	width: 110px;
}

#carousel .nextRightSecond {
	z-index: 4;
	left: 550px;

	opacity: 0.7;
}

#carousel .nextRightSecond img {
	width: 110px;
}

#carousel .selected section {
    width: 40rem;
}

#carousel .selected section span {
    color: rgb(233, 233, 233);
    font-size: 1.5em;
    font-weight: 200;
    margin-left: 26px;
    position: relative;
    bottom: 5px;
}

#carousel :not(.selected) section span {
    display: none;
}