body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
	background-color: #131313;
}

.phum {
	position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
	height: auto;
	width: 100%;
}


nav {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 15px;
	position: sticky;
    z-index: 1;
}


nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 30px;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

nav ul li a:hover {
    color: #ddd;
}

.name {
	color: #CDCDCD;
	padding-left: 120px;
	padding-top: 50px;
	font-size: 28px;
}


#home, #about-me, #biography, #merch, #tour {
    min-height: 450px;
    padding: 50px;
    margin-bottom: 20px;
}


.rectic {
	position: relative;
	display: inline-block;
	display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.pv2 {
	width: 45%;
	height: auto;
	z-index: 1;
	display: inline-block;
	padding-top: 20px;
	margin-left: -750px;
}
.ticket {
    width: 900px;
    height: 350px;
    background-color: #16291D;
    text-align: center;
}

.ticket2 {
	width: 200px;
	height: 350px;
	background-color: #FFFFFF;
	position: absolute;
	right: 0;
}

.ticcont {
	margin-top:  -290px;
	color: white;
	
}

h2 {
	padding-right: 10px;
}

.ticcont {
	width: 389px;
	height: 148px;
	text-align: start;
	padding-left: 315px;
}

.ticcontR {
	padding-left: 75px;
	padding-top: 10px;
	writing-mode: vertical-rl;
}

.admire {
	color: white;
	width: 75%;
	margin-top: -170px;
	margin-left: 60px;
}

.bio {
	margin-top: 30px;
	color: white;
	width: 590px;
	height: 232px;
}

.phum2 {
	width: 30%;
	margin-top: -180px;
	position: absolute;
	right: 0;
	padding-right: 50px;
}

.gallery{
	position: relative;
	height: auto;
	width: 90%;
	margin-top: 50px;
	padding: 45px 0;
	display: grid;
	grid-template-columns: auto auto auto auto; /*i write auto four time because we want four rows*/
	grid-gap: 2vh;
	grid-auto-flow: dense;
}
.gallery .img{
	position: relative;
	height: 100%;
	width: 100%;
	overflow: hidden;
	box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.9 );
	border-radius: 2px;
}
.gallery .img:first-child{
	grid-column-start: span 2;
	grid-row-start: span 2;
}
.gallery .img:nth-child(2n+3){
	grid-row-start: span 2;
}
.gallery .img:nth-child(4n+5){
	grid-column-start: span 2;
	grid-row-start: span 2;
}
.gallery .img:nth-child(6n+7){
	grid-row-start: span 1;
}
.gallery .img:nth-child(8n+9){
	grid-column-start: span 1;
	grid-row-start: span 1;
}
.gallery .img img{
	height: 100%;
	width: 100%;
	object-fit: cover;
	filter: brightness(0.5) grayscale(100);
	border-radius: 2px;
	transition: 0.3s ease-in-out;
}
.gallery .img:hover img{
	filter: brightness(1) grayscale(0);
}

.gallery {
	color: white;
}

.tour {
	color: white;
}
.contact {
	color: white;
}

.newsletter-container {
    max-width: 400px;
    margin: 0 auto;
	color: white;
	position: absolute;
	right: 0;
	padding-right: 100px;
	margin-top: -170px;
}

#newsletter-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#email {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
}

button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
	margin-left: 310px;
}

button:hover {
    background-color: #45a049;
}