


@import url('https://fonts.googleapis.com/css2?family=Russo+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');

body{
    background-image: url(Assets/WebsiteBG.png);
    padding: 0;
	margin-left: 2em;
	margin-right: 2em;
	font-size: 24px;
}


/* General ^^^^^, Navbar vvvv */

header{
    height:90px;
    position: fixed;
    top:0; left:0; right:0;
    background-color: rgb(0, 0, 0);
    box-shadow: 0 8px 15px #FF0000;
    display:flex;
    align-items:center;
    justify-content: space-between;
    z-index: 1000;
    font-family: 'Russo One', sans-serif;
}

nav {
	position: fixed;
	z-index: 10;
	left: 0;
	right: 0;
	top: 0;
	padding: 0 1%;
	height: 100px;
	background-color: #000000;
}

nav .logo {
	float: left;
	width: 25%;
	height: 100%;
	display: flex;
	align-items: center;
	color: #fff;
}

nav .links {
	float: right;
	padding: 0;
	margin: 0;
	width: 75%;
	height: 100%;
	display: flex;
	justify-content: space-around;
	align-items: center;
}

.on{
	color:#FF0000;
}

.off{
	color:white;
}

nav .links li {
	list-style: none;
}
nav .links a {
	display: block;
	padding: 1.03em;
	font-size: 30px;
	text-decoration: none;
}

nav .links a:hover{
    color:#FF0000;
    background-color: #141414;
}


#nav-toggle {
	position: absolute;
	top: -100px;
}
nav .icon-burger {
	display: none;
	position: absolute;
	right: 5%;
	top: 50%;
	transform: translateY(-50%);
}
nav .icon-burger .line {
	width: 30px;
	height: 5px;
	background-color: #fff;
	margin: 5px;
	border-radius: 3px;
	transition: all .3s ease-in-out;
}
@media screen and (max-width: 970px) {
	nav .logo {
		float: none;
		width: auto;
		justify-content: center;
	}
	nav .links {
		float: none;
		position: fixed;
		z-index: 9;
		left: 0;
		right: 0;
		top: 100px;
		bottom: 100%;
		width: auto;
		height: auto;
		flex-direction: column;
		justify-content: space-evenly;
		background-color: rgb(0, 0, 0);
		overflow: hidden;
		box-sizing: border-box;
		transition: all .5s ease-in-out;
	}
	nav .links a {
		font-size: 20px;
	}
	nav .links a:hover{
		color:#FF0000;;
		background-color: #14141400;
	}
	nav :checked ~ .links {
		bottom: 0;
	}
	nav .icon-burger {
		display: block;
	}
	nav :checked ~ .icon-burger .line:nth-child(1) {
		transform: translateY(10px) rotate(225deg);
	}
	nav :checked ~ .icon-burger .line:nth-child(3) {
		transform: translateY(-10px) rotate(-225deg);
	}
	nav :checked ~ .icon-burger .line:nth-child(2) {
		opacity: 0;
	}
	
}


.Cover{
    background-color: rgb(95, 95, 95);
    top:0px;
    left:0px;
    right:0px;
    height:92px;
}


/* Nav bar ^^^^^,  image slider vvvvv* */


.pic{
    position:relative;
}


.thumbnail{
    width:100%;
    border-radius: 13px;
	border:2px solid #FF0000;
	transition: 250ms;
    cursor: pointer;
}

.thumbnail2{
    width:100%;
	transition: 250ms;
}

.block1{
    margin-top: 6vh;
    width: 80vw;
    height:45vw;
    background-image: url(Assets/DP/DPDesc1.png);
    background-color: #a0a0a000;
    background-size: contain;
    background-repeat: no-repeat;
	transition: 250ms;
    margin-left: auto;
    margin-right: auto;
    border-radius: 13px;
	border:2px solid #ffffff;
    cursor: pointer;
}

.block1:hover{
    background-image: url(Assets/DP/DPDesc2.png);
    border-radius: 13px;
	border:2px solid #FF0000
}

.Bio1{
    color:#FF0000;
    font-family:'Russo One', sans-serif;
    font-size: 40px;
    text-align: center;
}


.PicGrid {
    display: grid;
    grid-template-columns: 1fr; 
    justify-content: center; 
    margin: 0 auto; 
    width: 70vw; 
}

.pic{
    position:relative;
    width:70vw;
}





/*  Grid style (genral styles) ^^^^^^, Card style (unit styles) vvvvvvvv */



.box .popup{
    position:fixed;
    top:0; left:0;
    background:rgba(0, 0, 0, 0.9);
    height: 100%;
    width:100%;
    z-index: 102;
    display:none;
}

.box .popup span{
    position:absolute;
    top:100px; right:10px;
    font-size:60px;
    font-weight: bolder;
    color:#fff;
    cursor:pointer;
    z-index: inherit;
}

.box .popup span:hover{
    color:#FF0000;
	transform: scale(1.01);
    
}

.box .popup img{
position: absolute;
Top:50%; Left:50%;
transform: translate(-50%, -50%);
border:3px solid  #FF0000;
border-radius: 5px;
width:700px;
object-fit:cover;
}

@media (max-width:820px){
    .box .popup img{
        width:87%;
    }
}

.thumbnail:hover{
	box-shadow: 0 0 15px #FF0000;
	transform: scale(1.01);
}