* {
  box-sizing: border-box;
}
html {
  height: 100vh;
  scroll-behavior: smooth;
  overflow: hidden;
}
body {
  background-color: #262730;
  font-family: Arial, sans-serif;
}

.app {
  display: flex;
  /* align-items: center; */
  justify-content: center;
  /* min-height: 100%; */
  height: 100vh;
}

.welcome {
  display: block;
  margin-top: 40vh;
  padding: 20px 96px;
  background-color: rgba(0,0,0, 0.2);
  box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.8);
  border-radius: 4px;
  position: absolute;
  width: 80%;
  /* padding: 20px; */
  text-align: center;
  z-index: 2;
}

.welcome h1 {
  text-align: center;
  color: #f8e376;
  font-weight: normal;
  font-size: 1.8rem;
  line-height: 1;
  margin: 0 0 10px 0;
}

.welcome p {
  text-align: center;
  color: #c9c496;
  font-size: 0.9rem;
  line-height: 1;
  margin: 0;
}

#background-video {
   width: 100vw;
   height: 100vh;
   object-fit: cover;
   position: fixed;
   left: 0;
   right: 0;
   top: 0;
   bottom: 0;
   z-index: -1;
}

@media (max-width: 750px) {
   #background-video {
      display: none;
   }
   body {
      background: url("/wait.jpg") no-repeat;
      background-size: cover;
   }
}

/* navbar */
nav {
  top: 0;
}

nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 4px;
  background-color: rgba(0,0,0, 0.6);
  box-shadow: 1px 10px 20px rgba(0, 0, 0, 0.8);
}

nav .active {
  background-color: rgba(0,0,0, 0.09);
}

nav ul li {
  float: left;
}

nav ul li a {
  display: inline-block;
  color: #9B9884;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

nav ul li a:hover, .dropdown:hover .dropbtn {
  background-color: rgba(0,0,0, 0.16);
}

/* news */
.news-panel {
  display: block;
  margin: 10px;
  padding: 30px;
  height: 90vh;
  width: 98vw;
  background-color: rgba(0,0,0, 0.50);
  border-radius: 4px;
}

.news-item {
  margin: 4px;
  padding: 20px;
  height: 10vh;
  width: 100%;
  background-color: rgba(0,0,0, 0.25);
  box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.4);
  color: lightgray;
  border-radius: 4px;
}
