body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-image: url('rainbow.jpg');
  background-size:cover;
  background-position: bottom;
  background-repeat: no-repeat;
  height: 100vh;
  overflow: hidden;
}

.shade {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
  height: 100vh;
}

header {
  color: #fff;
  padding: 50px;
  text-align: center;
}

.logo {
  transform: scale(1.4);
}

main {
  display: flex;
  justify-content: center;
  padding: 20px;
}

.location-box {
  color: #fff;
  font-size: 30px;
  text-shadow: 4px 4px 6px #000000;
  margin-left: 50px;
  margin-right: 100px;
  text-align: center;
  border-radius: 30px;
}

h1 {
  line-height: 0;
}

.border-top {
  width: 100%;
  transform: scale(120%);
}

.border-bot {
  width: 100%;
  transform: rotate(180deg) scale(120%);
}

@media (max-width: 1000px) {
  main {
    display: grid;
  }
  .location-box {
    margin: auto;
    margin-top: 20px;
  }
}
