html {
	scroll-behavior: smooth;
}

* {
	margin: 0;
	padding: 0;
	font-family: 'Be Vietnam Pro', sans-serif;
	cursor: url('./IMAGES/cursor.svg'), auto;
}

.header {
	min-height: 100vh;
	width: 100%;
	background-color: #1f1f1f;
	position: relative;
}

/* NAV */
nav {
	display: flex;
	padding: 1% 1%;
	justify-content: space-between;
	align-content: center;
	background-color: #333;
}

nav img {
	width: 80px;
	margin-left: 20px;
}

.nav-links {
	flex: 1;
	text-align: center;
}

.nav-links ul li {
	list-style: none;
	display: inline-block;
	padding: 10px 10px;
	position: relative;
}

.nav-links ul li a {
	color: #ffffff;
	text-decoration: none;
}

.nav-links ul li::after {
	content: '';
	width: 0%;
	height: 2px;
	background-color: #ffb6c1;
	display: block;
	margin: auto;
	transition: 0.5s;
}

.nav-links ul li:hover::after {
	width: 100%;
}

/* GIF ANIMATION */

.gif-container {
	width: 80%;
}

.gif-container img {
	width: 80%;
}

.hidden {
	display: none;
}

/* ABOUT ME */
.about-me {
	width: 60%;
	color: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: left;
	display: flex;
	align-items: center;
}

.about-me h1 {
	font-size: 62px;
	font-weight: bold;
	color: #f08080;
	text-align: left;
}

.about-me p {
	margin: 10px 0 40px;
	font-size: 18px;
	color: #fff;
	text-align: left;
}

.about-me .left-content {
	flex: 0 0 auto;
	margin-right: 15px;
}

.about-me .right-content {
	flex: 1;
	padding-left: 20px;
	text-align: left;
}

/* ABOUT ME BUTTON */
.rdmbtn {
	display: inline-block;
	text-decoration: none;
	color: #ff8093;
	border: 2px solid rgb(255, 128, 147);
	padding: 10px 25px;
	font-size: 15px;
	background: transparent;
	position: relative;
	cursor: pointer;
}

.rdmbtn:hover {
	border: 2px solid rgb(54, 54, 54);
	background-color: rgb(97, 97, 97);
	transition: 1s;
}

/* GO TO PORTFOLIO BUTTON */
.rdmbtn2-container {
	margin-top: 20px;
	text-align: center;
}

.rdmbtn2 {
	display: inline-block;
	text-decoration: none;
	color: #ff8093;
	border: 2px solid rgb(255, 128, 147);
	padding: 10px 25px;
	font-size: 15px;
	background: transparent;
	position: relative;
	cursor: pointer;
}

/* ICONS */
nav .fa {
	display: none;
}

a {
	color: salmon;
	text-decoration: none;
}

a:hover {
	color: lightpink;
}

/* GALLERY ROW - TEXT*/
h1 {
	font-size: 62px;
	font-weight: bold;
	color: lightcoral;
	text-align: center;
	align-items: center;
}

p {
	margin: 10px 0 40px;
	font-size: 18px;
	color: rgb(255, 228, 232);
	align-items: center;
	text-align: center;
}

/* GALLERY ROW */
.photo-gallery {
	position: relative;
	align-items: center;
	padding: 5%;
	background-image: linear-gradient(rgba(31, 31, 31, 1), rgba(51, 51, 51, 0.7)),
		url(./IMAGES/Background/background.png);
	background-position: center;
	background-size: cover;
}

.photo-gallery img {
	height: 450px;
	width: 450px;
	box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.4);
}

.gallery-row {
	margin-top: 2%;
	display: flex;
	justify-content: space-between;
	padding: 20px;
}

.gallery-row2 {
	margin-top: 2%;
	display: flex;
	justify-content: space-between;
	padding: 20px;
}

/* QUESTIONS SECTION */
.questions {
	position: relative;
	background: linear-gradient(rgba(51, 51, 51, 0.7), rgba(31, 31, 31, 0.0)),
		url(./IMAGES/Background/background2.png);
	background-size: cover;
	padding: 80px;
	overflow: hidden;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

.questions-box {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: calc(70% - 20px);
	margin-bottom: 20px;
	background-color: rgba(77, 77, 77, 0.3);
	border-radius: 20px;
	padding: 20px;
	box-sizing: border-box;
	box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
}


.questions-box h3 {
	text-align: left;
	margin-top: 10px;
	color: #ff8093;
}

.questions-box p {
	text-align: left;
	margin-top: 10px;
	margin-bottom: 0;
}

.question-box-container {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

/* Styles for phone resolutions */

@media (max-width: 700px) {

	.photo-gallery p {
		font-size: 14px;
	}

	.gallery-row {
		flex-direction: column;
		gap: 20px;
	}

	.image-tag {
		margin-top: 10px;
	}

	.gallery-row a {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.gallery-row a img {
		width: 85%;
		height: auto;
	}

	/* ABOUT ME */
	.about-me {
		width: 90%;
		text-align: center;
		flex-direction: column;
	}

	.about-me h1 {
		font-size: 35px;
		text-align: center;
	}

	.about-me p {
		font-size: 14px;
		text-align: center;
	}

	.about-me .left-content {
		margin-right: 0;
		margin-bottom: 15px;
	}

	.about-me .right-content {
		padding-left: 0;
	}

	/* ABOUT ME BUTTON */
	.rdmbtn {
		display: block;
		margin: 0 auto;
		width: fit-content;
	}

	/* GIF */

	.left-content img {
		max-height: 150px;
		width: auto;
		margin: 0 auto;
		align-items: center
	}

	.questions {
		width: 100%;
		padding: 0;
		padding-top: 0;
	}

	.questions p {
		font-size: 12px;
	}

	.questions h1 {
		margin: 15px;
	}

	/* NAVIGATION LINKS */
	.nav-links ul li {
		display: block;
	}

	.nav-links {
		display: none;
		position: absolute;
		background-color: rgba(51, 51, 51, 0.8);
		backdrop-filter: blur(5px);
		box-shadow: 0 2px 4px rgba(10, 0, 0, 0.2);
		height: 100vh;
		width: 200px;
		top: 0;
		right: -200px;
		text-align: left;
		z-index: 2;
		transition: 1s;
	}

	nav .fa {
		display: block;
		color: #fff;
		margin: 10px;
		font-size: 22px;
		cursor: pointer;
	}

	.nav-links ul {
		padding: 30px;
	}

	h1 {
		font-size: 35px;
	}

	p {
		font-size: 14px;
	}
}