@charset "utf-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: transparent;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: black;
  color: #fff;
  padding: 10px 30px;
}

.main {
	color: black;
}

.logo a {
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 20px;
}

.nav-links li a {
  text-decoration: none;
  color: #fff;
}

/* Header styles */
header {
  background-image: url("images/ceiling.jpg");
  background-position: center;
  background-size: cover;
  position: relative;
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.header h1 {
	color: white;
	text-align: center;
    margin-bottom: 20px;
    font-size: 72px;
    font-weight: bold;
}

.header p {
	color: white;
	font-size: 28px;
	text-align: center;
}

/* button */

.place {
	background-image: url("images/sculpture.jpg");
	background-position: center;
	background-size: 100%;
	height: 100vh;
}

.yey-btn {
	display: inline-block;
	text-decoration: none;
	color: white;
	border: 1px solid #000000;
	padding: 12px 34px;
	font-size: 50px;
	background: black;
	position: relative;
	align-items: center;
	top: 50%;
	left: 44%;
	cursor: pointer;
	text-align: center;
	font-family: serif;
}

.yey-btn:hover{
	border: 1px solid black;
	background: transparent;
	transition: 1s;
	color: black;
}

/* Footer styles */
footer {
  background-color: black;
  color: #fff;
  padding: 20px 30px;
  text-align: center;
}