/* Import Bootstrap framework */
@import url('https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css');

/* Default styles */
body {
  font-family: 'Open Sans', sans-serif;
  color: #333;
}

h1, h2, h3 {
  font-weight: 600;
}

/* Navbar styles */
.navbar {
  background-color: #007bff;
}

.navbar-brand {
  font-size: 1.5rem;
}

/* Header */
.header {
  height: 60vh;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('header-img.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center; 
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  
  .header {
    height: 100vh;
  }
  
  .navbar-brand {
    font-size: 1rem;
  }
  
}@charset "utf-8";
/* CSS Document */

