body {
	font-family: "skibidi Gothic";
   font-weight: normal;
	background-color: rgb(25, 25, 25);
	text-align: center;
	color: rgb(255, 255, 255);
	user-select: none;
	/* Standard syntax */
}

.responsive {
  width: 90%;
  height: auto;
	border-radius: 20px;
}

div {
	text-align: center;
}

h5 {
	font-size: 30px;
}

h4 {
	color: rgb(161, 161, 161);
}

h2 {
	color: rgb(0, 255, 0);
	font-size: 30px;
}

h1 {
	font-size: 70px;
}

.logo {
	border-radius: 100px;
}

.button {
	border-radius: 12px;
	font-family: "skibidi Gothic";
	display: inline-block;
	font-size: 32px;
	padding: 25px 25px;
	cursor: pointer;
	text-align: center;
	color: #fff;
	background-color: rgb(0, 200, 0);
  	transition-duration: 0.2s;
  	border: 2px solid rgb(0, 200, 0);
}

.button:hover {
  background-color: rgba(0, 0, 0, 0);
}

.home {
	padding: 15px 15px;
	border-radius: 12px;
	font-family: "skibidi Gothic";
	display: inline-block;
	font-size: 32px;
	cursor: pointer;
	text-align: center;
	color: #fff;
	background-color: rgb(255, 255, 255);
  	transition-duration: 0.2s;
  	border: 2px solid rgb(255, 255, 255);
}

.home:hover {
  background-color: rgba(0, 0, 0, 0);
}

.black-button {
	border-radius: 12px;
	font-family: "skibidi Gothic";
	display: inline-block;
	font-size: 32px;
	padding: 25px 25px;
	cursor: pointer;
	text-align: center;
	color: #fff;
	background-color: rgb(32, 32, 32);
  	transition-duration: 0.2s;
  	border: 2px solid rgb(32, 32, 32);
}

.black-button:hover {
  background-color: rgba(0, 0, 0, 0);
}

.red-button {
	border-radius: 12px;
	font-family: "skibidi Gothic";
	display: inline-block;
	font-size: 32px;
	padding: 25px 25px;
	cursor: pointer;
	text-align: center;
	color: #fff;
	background-color: rgb(255, 0, 0);
  	transition-duration: 0.2s;
  	border: 2px solid rgb(255, 0, 0);
}

.red-button:hover {
  background-color: rgba(0, 0, 0, 0);
}

/* Add a black background color to the top navigation */
.topnav {
	background-color: #333;
	overflow: hidden;
	border-radius: 15px;
}

/* Style the links inside the navigation bar */
.topnav a {
  	transition-duration: 0.2s;
	float: left;
	display: block;
	color: rgb(255, 255, 255);
	text-align: center;
	padding: 14px 16px;
	text-decoration: none;
	font-size: 17px;
	border-radius: 5px;
}

/* Change the color of links on hover */
.topnav a:hover {
	background-color: rgb(255, 255, 255);
	color: black;
}

/* Add an active class to highlight the current page */
.topnav a.active {
	background-color: rgb(0, 200, 0);
	color: white;
}

/* Hide the link that should open and close the topnav on small screens */
.topnav .icon {
	display: none;
}

/* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
@media screen and (max-width: 600px) {
	.topnav a:not(:first-child) {
		display: none;
	}

	.topnav a.icon {
		float: right;
		display: block;
	}
}

/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
@media screen and (max-width: 600px) {
	.topnav.responsive {
		position: relative;
	}

	.topnav.responsive a.icon {
		position: absolute;
		right: 0;
		top: 0;
	}

	.topnav.responsive a {
		float: none;
		display: block;
		text-align: left;
	}
}


.cards .card:after {
	position: absolute;
	text-align: center;
}


.cards {
	display: flex;
}

.wrapper {
	padding: 15px;
}

.cards {
	flex-flow: row wrap;
}

.cards .card {
	margin: 20px;
	width: 180px;
	height: 270px;
	overflow: hidden;
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.8);
	transform-origin: center top;
	transform-style: preserve-3d;
	transform: translateZ(0);
	transition: 0.3s;
	border-radius: 10px;
	max-width: fit-content;
	margin-left: auto;
	margin-right: auto;
}

.cards .card img {
	width: 100%;
	min-height: 100%;
}

.cards .card:after {
	content: '';
	z-index: 10;
	width: 200%;
	height: 100%;
	top: -90%;
	left: -20px;
	opacity: 0.1;
	transform: rotate(45deg);
	background: linear-gradient(to top, transparent, #fff 15%, rgba(255, 255, 255, 0.5));
	transition: 0.3s;
}

.cards .card:hover,
.cards .card:focus,
.cards .card:active {
	box-shadow: 0 8px 16px 3px rgba(0, 0, 0, 0.6);
	transform: translateY(-3px) scale(1.05) rotateX(15deg);
}

.cards .card:hover:after,
.cards .card:focus:after,
.cards .card:active:after {
	transform: rotate(25deg);
	top: -40%;
	opacity: 0.15;
}

/* The flip box container - set the width and height to whatever you want. We have added the border property to demonstrate that the flip itself goes out of the box on hover (remove perspective if you don't want the 3D effect */
.flip-box {
	background-color: transparent;
	width: 300px;
	height: 100px;
	perspective: 1000px;
	/* Remove this if you don't want the 3D effect */
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/* This container is needed to position the front and back side */
.flip-box-inner {
	position: relative;
	width: 100%;
	height: 100%;
	text-align: center;
	transition: transform 0.5s;
	transform-style: preserve-3d;
}

/* Do an horizontal flip when you move the mouse over the flip box container */
.flip-box:hover .flip-box-inner {
	transform: rotateY(180deg);
}

/* Position the front and back side */
.flip-box-front,
.flip-box-back {
	position: absolute;
	width: 100%;
	height: 100%;
	backface-visibility: hidden;
}

/* Style the front side */
.flip-box-front {
	background-color: rgb(60, 60, 60);
	color: rgb(255, 255, 255);
	border-radius: 15px;
	line-height: 5px;
}

/* Style the back side */
.flip-box-back {
	background-color: rgb(60, 60, 60);
	color: rgb(255, 255, 255);
	transform: rotateY(180deg);
	border-radius: 15px;
	line-height: 5px;
}