h1, h2, p  { 
	margin: 5px;
	line-height: 1.2;
    text-align: center;
}
h1 { 
	font-size: 1.4rem;
	letter-spacing: 2px;
	font-weight: normal;
}

h2 { 
	font-size: 1.25rem;
	font-weight: normal;
}

body {
    background: url(sketchGrid.jpg);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: top;
    height: 101vh;
}

.shelf {
    float: left;
    width: 300px;
}

.theme {
    float: right;
    width: 1100px;
    flex-wrap: wrap;
    margin: 7vh;
    margin-top: 120px;
    overflow-y: scroll;
    height: 800px;
}

#AP_win {
    display: flex;
    background-color: rgb(43, 100, 43, 0.3)
}


.tabs {
    height: fit-content;
    float: right;
    margin-right: 750px;
    margin-top: 100px;
}

.tabs button {
    border-radius: 0px;
    width: 100px;
    margin: 0px;
}

#AP_tab {
    
}

.frame {
    margin: 1.7vh;
    border: 20px solid transparent;
    border-image: url("frame.jpg") 17 round;
    height: 200px;
    width: auto;
}
.frame:hover {
    height: 210px;
}
.focus {
    display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-image: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}
.focus--content {
    margin: auto;
    display: block;
    width: auto;
    max-height: 700px; 
}
#caption {
    margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}
.focus--content, #caption {
    -webkit-animation-name: zoom;
    -webkit-animation-duration: .6s;
    animation-name: zoom;
    animation-duration: .6s;
}
@-webkit-keyframes zoom {
    from {transform:scale(0)}
    to {transform:scale(1)}
}
@keyframes zoom {
    from {transform:scale(0.1)}
    to {transform:scale(1)}
}

.close {
    position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}
.close:hover, .close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

@media only screen and (max-width: 500px){
  .frame {
    width: 100%;
  }
}

.sketchbook {
    display: flex;
    flex-wrap: wrap;
    max-width: 14.5rem;
    margin: 5vh;
    justify-content: center;
    position: fixed;
}

.clickable {
    width: 200px;
    transition: transform .1s ease-in;
}

.clickable:hover {
    transform: rotate(10deg);
}
