﻿@import url('https://fonts.googleapis.com/css2?family=Itim&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

*{
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	justify-content: center;
	transition: .3s;
	font-family: "Itim";
	text-align: center;
}

html{
	scroll-behavior: smooth;
}

body{
	line-height: 1.8;
}

header{
	background: linear-gradient(120deg, #f75 0%, #e7f 100%);
	width: 100%;
	position: fixed;
	top: 0;
	z-index: 1000;
}

nav{
	display: flex;
	margin: 0 20px;
	justify-content: space-between;
	align-items: center;
	color: white;
	height: 60px;
}

nav img{
	width: 8rem;
}

nav ul{
	list-style: none;
	display: flex;
}

.link, i{
	text-decoration: none;
	color: white;
	margin: 0 10px;
	font-size: 1.25rem;
}

.act{
	text-decoration: underline;
}

.link:hover, i:hover{
	color: purple;
	cursor: pointer;
}

.main{
	display: flex;
	flex-direction: column;
	height: 100vh;
	width: 100%;
	background: url("Img/Neon\ Tunnel.png") center;
	background-repeat: no-repeat;
	background-size: cover;
	color: white;
	align-items: center;
	text-shadow: 0 3px 5px black;
}

.main h1{
	font-size: 3rem;
}

.main p{
	font-size: 1.5rem;
}

.list{
	margin-top: 20px;
	padding: 10px 20px;
	background: rgba(150, 100, 235, .9);
	border-radius: 8px;
	text-decoration: none;
	color: white;
	box-shadow: 0 3px 5px rgba(0, 0, 0, .2);
}

.list:hover{
	background: rgba(150, 75, 200, 1);
}

.des{
	text-align: center;
	padding: 60px 20px;
}

.des h1{
	font-size: 2rem;
}

.grid{
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
}

.card{
	margin: 10px;
	box-shadow: 0 3px 5px rgba(0, 0, 0, .2);
	border-radius: 8px;
}

.card:hover{
	transform: translateY(-10px);
}

.card img{
	width: 100%;
	border-radius: 10px;
	height: 200px;
	object-fit: cover;
}

.card a{
	line-height: 3;
	margin-top: 40px;
	padding: 10px 20px;
	box-shadow: 0 3px 5px rgba(0, 0, 0, .1);
	background: rgba(200, 100, 235, 1);
	border-radius: 10px;
	text-decoration: none;
	color: white;
}

.card a:hover{
	background: rgba(150, 75, 200, 1);
}


.flex{
	display: flex;
	flex-direction: column;
	justify-content: space-around;
}

.rcard{
	margin: 10px 20%;
	box-shadow: 0 3px 5px rgba(0, 0, 0, .2);
	border-radius: 10px;
}

.rcard:hover{
	transform: translateY(-10px);
}

.rcard img{
	width: 100%;
	border-radius: 10px;
}

.rcard a{
	line-height: 3;
	margin-top: 40px;
	padding: 10px 20px;
	background: rgba(200, 100, 235, 1);
	border-radius: 8px;
	text-decoration: none;
	color: white;
	box-shadow: 0 3px 5px rgba(0, 0, 0, .2);
}

.rcard a:hover{
	background: rgba(150, 75, 200, 1);
}

footer{
	display: flex;
	height: 60px;
	background: linear-gradient(120deg, #f75 0%, #e7f 100%);
	width: 100%;
	align-items: center;
	color: white;
	font-size: 1.5rem;
}

.pcard{
	margin: 0 10%;
	border-radius: 8px;
	display: flex;
}

.pcard img{
	width: 100%;
	margin: 50px 0;
	border-radius: 8px;
	max-height: 500px;
	object-fit: cover;
}

.gcard{
	border-radius: 8px;
	margin: 10px;
}

.gcard img{
	width: 100%;
	border-radius: 8px;
}

.rec .box{
	margin: 0 15%;
}

.rec p{
	font-size: 1.5rem;
}

ol p{
	text-align: left;
}

.link2{
	line-height: 3;
	margin: 40px auto;
	padding: 10px 20px;
	box-shadow: 0 3px 5px rgba(0, 0, 0, .1);
	background: rgba(200, 100, 235, 1);
	border-radius: 50px;
	text-decoration: none;
	color: white;
	font-size: 1.2rem;
}

.link2:hover{
	background: rgba(150, 75, 200, 1);
}

@media (max-width:800px){
	.pcard{
		margin: 0 5%;
	}

	.rec .box{
		margin: 0 10%;
	}

	.rcard{
		margin: 10px 15%;
	}

	.grid{
		grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	}
}
