/*Linkdin Shayan Shah*/

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

header {
  width: 100%;
  height: 100vh;
  background: url(./images/pizza2.png);
  background-size: 50% 90%;
  background-repeat: no-repeat;
  background-position: bottom right;
  position: relative;
}

nav {
  width: 100%;
  height: 70px;
  padding: 0px 70px;
  background: white;
  color: black;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 2px 0px 5px grey;
}

.logo {
  font-weight: bold;
  font-size: 2em;
  letter-spacing: 2px;
}

.logo span {
  color: brown;
}

.menu a {
  text-decoration: none;
  color: black;
  padding: 10px 20px;
  transition: 0.3s ease;
}

.menu a:hover {
  background: brown;
  color: white;
  border-radius: 8px;
}

.menu a:last-child {
  background: brown;
  color: white;
  border-radius: 8px;
}

.h-text {
  position: absolute;
  top: 30%;
  left: 5%;
  padding: 15px;
}

.h-text p {
  color: #262626;
  letter-spacing: 3px;
  font-weight: bold;
}

.h-text h1 {
  font-size: 4em;
  line-height: 1.5em;
}

.h-text h1 span {
  color: brown;
}

.h-text h2 {
  font-size: 4em;
  margin-bottom: 0.5em;
}

#order {
  text-decoration: none;
  color: white;
  background: brown;
  border-radius: 8px;
  padding: 10px 20px;
  display: inline-block;
  transition: 0.3s ease;
}

#order:hover {
  transform: scale(1.2);
}

#dis {
  text-decoration: none;
  color: white;
  background: #262626;
  padding: 10px 20px;
  border-radius: 8px;
}

#Pizza {
  position: absolute;
  bottom: 15%;
  left: 5%;
}

#Pizza img {
  transition: 0.4s ease;
}

#Pizza img:hover {
  transform: translateY(-20px);
}
