
@keyframes slideDownLonger {
  0% {top: -150px; opacity: 0;}
  100% {top: 0; opacity: 1;}
}
body,h1 {font-family: "Raleway", sans-serif; margin: 0; height: 100%;}

html, body {
  margin: 0;
  padding: 0;
  height: 100vh;
  overflow-x: hidden;
}

.bgimg {
  background-image: url('../img/bag.png');
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -2;
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: -1;
}

.navbar {
  background-color: rgba(0,0,0,0.01);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
}
.navbar a {
  color: white;
  padding: 14px 20px;
  text-decoration: none;
  font-size: 18px;
  float: right;
}
.navbar a:hover {
  background-color: #555;
}
.content {
  position: absolute;
  bottom: 25%; /* Moved inline style to CSS */
  width: 100%;
  color: white;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
}
.w3-jumbo.w3-animate-top {
  position: relative;
  animation: slideDownLonger 6s ease forwards;
}
hr {
  border-color: #999;
}

@media only screen and (max-width: 600px) {
  .content {
    margin-left: 2vw !important;
    margin-right: 2vw !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    max-width: 95vw !important;
  }
  .w3-jumbo {
    font-size: 3rem !important; /* Smaller jumbo text */
  }
  .w3-large {
    font-size: 1.1rem !important; /* Adjust paragraph size */
  }
  hr {
    width: 60% !important; /* Make the HR smaller on narrow screens */
  }
}


