/* Main components START */
:root {
  --bg-color: rgb(255, 252, 240);
  --foot-color: rgb(25, 34, 23);
}
body {
  /* background-color: skyblue; */
  background-image: url(../images/Background.jpg);
  backdrop-filter: blur(8px);
}
.container {
  background-color: var(--bg-color);
}
#divider-body {
  /* width: 80%; */
  height: 1px;
  background-color: grey;
}
#divider-space {
  height: auto;
  width: auto;
}
.nav-item {
  font-weight: lighter;
  font-size: 1.25rem;
}
.active {
  font-weight: bolder;
}
/* Main components END */

/* Header & nav section START */
#header-nav-search {
  padding-top: 10px;
  padding-bottom: 10px;
}
li a:hover {
  font-weight: 400;
}
.navbar-brand {
  font-weight: lighter;
  font-size: 1.5rem;
}
/* Header & nav section END */

/* Banner/ Jumbotron section START */
.jumbotron {
  padding-top: 3rem;
  padding-bottom: 3rem;
  margin-bottom: 0;
  background-color: var(--bg-color);
}
@media only screen and (min-width: 768px) {
  .jumbotron {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
@media only screen and (max-width: 768px) {
  .jumbotron {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
@media only screen and (max-width: 575px){
  .jumbotron{
    margin-left: -6%;
  }
}
.jumbotron .container {
  max-width: 40rem;
}
h1 {
  font-family: "Playwrite CU", cursive;
  font-optical-sizing: auto;
  font-weight: 300;
  font-size: 80px;
  font-style: normal;
}
/* Banner/ Jumbotron section END */

/* Album section START */
.card-header-tabs {
  padding-top: 30px;
  padding-bottom: 30px;
}
.nav-link.active {
  background-color: var(--bg-color) !important;
}
.album {
  border: 0px;
  background-color: var(--bg-color);
  margin-top: -23px;
}
.card {
  border: 0px;
  background-color: var(--bg-color);
  margin-top: -23px;
}
.grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.change.grid {
  display: inline-block;
  grid-template-columns: auto;
  justify-content: center;
  max-width: 50%;
}
@media only screen and (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr 1fr;
  }
  .change.grid {
    max-width: 80%;
  }
}
.img-thumbnail {
  padding: 0;
}
.img-thumbnail:hover {
  /* Good for making it full-screen swhen selected */
  /* max-width: 1000px;
  max-height: 1000px;  */
  padding: 5px;
  cursor: pointer;
  background-color: brown;
}
/* Unselected card title */
[aria-selected="false"]{
  color: darkolivegreen;
}
/* Change hover effect of unselected card title */
[aria-selected="false"]:hover{
  color: darkolivegreen;
  font-weight: 300;
}
/* Change card title font size */
[id$="-tab"] {
  font-size: 20px;
}
.hidden {
  display: none;
}
i.active {
  /* max-width: 50%; */
}
/* Album section END */

/* Footer section START */
footer {
  color: aliceblue;
  background-color: var(--foot-color);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
/* Footer section END */