@import url(https://fonts.googleapis.com/css?family=Anaheim);

*{
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
	box-sizing: border-box;
}
*:before,
*:after{
	box-sizing: border-box;
}
html,
body{
	min-height: 100%;
}
body{
	background-image: radial-gradient(mintcream 0%, lightgray 100%);
}
h1{
	display: table;
	margin: 0% auto 0;
	text-transform: uppercase;
	font-family: 'Anaheim', sans-serif;
	font-size: 4em;
	font-weight: bold;
	text-shadow: 0 1px white, 0 2px black;
text-align: center;
margin-bottom: 70px
}
.container{
	margin: 4% auto;
	width: 210px;
	height: 140px;
	position: relative;
	perspective: 1000px;
margin-bottom: 70px
}
#carousel{
	width: 100%;
	height: 100%;
	position: absolute;
	transform-style: preserve-3d;
	animation: rotation 20s infinite linear;
}
#carousel:hover{
	animation-play-state: paused;
}
#carousel figure{
	display: block;
	position: absolute;
	width: 186px;
	height: 116px;
	left: 10px;
	top: 10px;
	background: black;
	overflow: hidden;
	border: solid 5px black;
}
#carousel figure:nth-child(1){transform: rotateY(0deg) translateZ(288px);}
#carousel figure:nth-child(2) { transform: rotateY(40deg) translateZ(288px);}
#carousel figure:nth-child(3) { transform: rotateY(80deg) translateZ(288px);}
#carousel figure:nth-child(4) { transform: rotateY(120deg) translateZ(288px);}
#carousel figure:nth-child(5) { transform: rotateY(160deg) translateZ(288px);}
#carousel figure:nth-child(6) { transform: rotateY(200deg) translateZ(288px);}
#carousel figure:nth-child(7) { transform: rotateY(240deg) translateZ(288px);}
#carousel figure:nth-child(8) { transform: rotateY(280deg) translateZ(288px);}
#carousel figure:nth-child(9) { transform: rotateY(320deg) translateZ(288px);}

img{
	-webkit-filter: grayscale(1);
	cursor: pointer;
	transition: all .5s ease;
}
img:hover{
	-webkit-filter: grayscale(0);
  transform: scale(1.2,1.2);
}

@keyframes rotation{
	from{
		transform: rotateY(0deg);
	}
	to{
		transform: rotateY(360deg);
	}
}
.socials {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}
.social {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}
h4{
	margin: 5% auto;
  width: 50%;
font-family: 'Anaheim', sans-serif;
  border: 3px solid grey;
  padding: 10px;
}
.image-container {
margin: 5% auto;
            display: flex;
            justify-content: center; 
            flex-wrap: wrap; 
            gap: 20px; 
            padding: 20px; 
            background-color: #f9f9f9; 
            border: 2px solid #ddd; 
            border-radius: 10px; 
        }

        .image-container img {
            width: 150px; 
            height: auto; 
            border: 2px solid 
            border-radius: 10px; 
            transition: transform 0.3s; 
        }

        .image-container img:hover {
            transform: scale(1.1); 
	}

.disclaimer {
	margin: 5% auto;
font-family: 'Anaheim', sans-serif;
text-align: center;
}
