*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'poppons',sans-serif;

}
/* div{
	border: 5px solid #ccc;
} */
.container{
	width: 100%;
	height: 100vh;
	background-image: linear-gradient(rgba(0,0,0,0.3),transparent),url();
	background-size: cover;
	background-position: center;
	padding: 0 8%;
	position: relative;

}
nav{
	display: flex;
	width: 100%;
	align-items: center;
	flex-wrap: wrap;
	padding: 5px;
	position: relative;
	z-index: 2;
}
nav h1{
	cursor: crosshair;
	font-size: 120px;
	font-height: 100px;
	margin-left: -10px;
	color: transparent;
	-webkit-text-stroke: 1px #fff;
	background: url(images/back.png);
	-webkit-background-clip: text;
	background-position: 0 0;
	animation: back 20s linear infinite;
}

@keyframes back{
	100%{
		background-position: 2000px 0;
	}
}
nav ul{
	flex: 1;
	text-align: right;
	padding-right: 30px;
}
nav ul li{
	display: inline-block;
	list-style: none;
	margin: 10px 30px;
}
.about{
	margin: 10px 64px 10px 30px;
}
nav ul li a{
	color: #fff;
	text-decoration: none;
	position: relative;
}
nav ul li a::after{
	content: '';
	width: 0;
	height: 3px;
	position: absolute;
	bottom: -5px;
	left: 50%;
	transform: translateX(-50%);
	background: #fff;
	transition: width 0.3s;
}
nav ul li a:hover::after{
	width: 50%;
}
.box {
    position: relative;
    width: 50%;
    display: flex;
    flex-wrap: wrap;
    padding: 4px;
    margin: 0;
}
.image {
    position: relative;
    height:368px;
    width: 500px;
    display: flex;
    padding: 0 4px;
    margin: 0;
}
  
.overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height:375px;
    width: 510px;
    opacity: 0;
    transition: .5s ease;
    background-color: #008CBA;
}
  
.box:hover .overlay {
    opacity: 1;
}
  
.text {
    color: #fff;
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
	text-decoration: none;
}

.text a {
    color: #fff; 
    text-decoration: none;
}
.row {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
  }  
.column {
    flex: 50%;
    max-width: 50%;
    padding: 0;
  }
.text-links{
	display: none;
}

  
@media screen and (max-width: 768px) {
    .column {
      flex: 100%;
      max-width: 80%;
    }
	nav h1 {
        font-size: 30px;
    }

    .menu {
		display: flex;
		list-style: none;
		position: fixed;
		top: 0;
		right: -75%; /* Start offscreen */
		bottom: 0;
		flex-direction: column;
		background-color: #333;
		width: 75%; /* Set width to half of the screen */
		transition: right 0.3s; /* Add transition for smooth animation */
		align-items: center;
		
	}
	
	.menu.active {
		right: 0; /* Move menu to the right when active */
	}
	
	.menu li {
		margin: 10px;
	}
	
	.menu-toggle {
		display: block;
		position: absolute;
		top: 5px;
		right: 5px;
		z-index: 10; /* Ensure it appears above other content */
	}
	
	.menu-toggle .bar {
		width: 30px;
		height: 3px;
		background-color: #fff;
		margin: 5px 0;
		transition: 0.4s;
	}

    .menu-toggle.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
	.box {
		display: none;
	}
	.text-links {
		display: inline-block;
		text-align: center; /* Center the text links */
	}
	
	.text-links a {
		display: inline-block; /* Display each link as a block element */
		margin-bottom: 10px; /* Add spacing between each text link */
		color: #fff;
		text-decoration: none;
		padding: 5px; /* Add padding for clickable area */
	}
	
	/* .text-links a :hover {
		width: 0;
		height: 3px;
		position: absolute;
		bottom: -5px;
		left: 50%;
		transform: translateX(-50%);
		background: #fff;
		transition: width 0.3s;
	} */
	
		
}
