body {
  background: white;
}
.small-container {
  max-width: 1080px;
  margin: auto;
  padding: 25px;
  padding-bottom: 25px;
}
.title {
  color: rgb(4, 43, 201);
  text-align: center;
  font-size: 50px;
}
p {
  color: blue;
  text-align: center;
}
.para {
  margin: 20px auto;
  text-align: justify;
}
#mobile-navbar {
  display: none;
}
@media screen and (max-width: 700px) {
  #mobile-navbar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgb(72, 25, 25);
    height: 0px;
    transition: all 0.3s;
  }
  #mobile-navbar.active {
    height: 230px;
  }
  #mobile-navbar a {
    color: white;
    padding: 8px;
  }
}
