/*Basic css*/

html {
  font-size: 15px;
}

body {
  font-family: "Open Sans", sans-serif;
  font-weight: lighter;
  color: #000000;
  padding-top: 3.0rem;
  padding-bottom: 1.5rem;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-weight: normal;
  color: #11498A;
}

a, a:link, a:hover, a:visited, a:active {
  color: #11498A;
}

b, strong {
  font-weight: normal;
}

details {
  display: block;
}

summary {
  display: list-item;
  cursor: pointer;
}

/*color of ucsb yellow and blue*/

.ucsb-yellow {
  color: #FFCF37;
}

.ucsb-blue {
  color: #11498A;
}

.bg-ucsb {
  background-color: #11498A !important;
}

/*css of navbar*/

.navbar-custom {
  background-color: #11498A;
}
/* change the brand and text color */
.navbar-custom .navbar-brand,
.navbar-custom .navbar-text {
  color: #FFCF37;
}
/* change the link color */
.navbar-custom .navbar-nav .nav-link {
  color: #FFCF37;
}
/* change the color of active or hovered links */
.navbar-custom .nav-item.active .nav-link,
.navbar-custom .nav-item:hover .nav-link {
  color: #F9A12A;
}

.navbar-custom .navbar-brand:focus, .navbar-custom .navbar-brand:hover {
  color: #F9A12A;
}

/*css of jumbotron*/

.jumbotron {
  font-size: 1rem;
  padding: 2.5rem 1rem 1.5rem 1rem;
  text-align: justify;
  border-bottom: 0.05rem solid #e5e5e5;
}

/*css of footer*/

.footer {
  font-size: 0.8rem;
  color: #969696;
}

/*css of ul and li*/
.ul-paper {
  padding: 0;
  list-style-type: none;
}

.li-paper {
  margin: 1rem 0;
}

ul li > span {
  display: block;
}

ul li > span.title {
  font-weight: normal;
}

/*css of center image*/

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

/*Card*/
.card {
  border: 0px;
}
