body {
  margin: 0;
  font-family: 'Lato', sans-serif;
  background-color: #fff;
}

nav {
  display: inline;
}

a {
  padding: 10px;
  color: #fff;
  text-decoration: none;
}

a:hover {
  color: #ccc;
}

.masthead-avatar {
  height: 250px;
  width: auto;
  border-radius: 10px;
  margin: 5px;
  object-fit: cover;
}

.photo-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.masthead {
  text-align: center;
  color: white;
  background-image: url('/assets/flag.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 108vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 50px;
}

h1.masthead-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  text-transform: uppercase;
  margin-top: 3rem;
  background: linear-gradient(to right, red, white, blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

p.masthead-subheading {
  font-weight: 300;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.copyright {
  background-color: #2c3e50;
  padding: 1rem 0;
  color: #fff;
  text-align: center;
  font-size: 0.9rem;
}

.namaste-marquee {
  font-weight: bold;
  font-size: 1.2rem;
  margin-top: 10px;
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(to right, crimson, red, white, blue);
  background-size: 400% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 6s linear infinite;
  text-align: center;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}
