body {
 background-color: #EBCABF; /*peach*/
}

/* Page content. The value of the margin-left property should match the value of the sidebar's width property */
.content {
  padding: 1px 16px;
  margin-top: 2vw;  
  width:100%;
}

.snake {
  position: fixed;
  max-width: 100%;
  height: auto;
  left: 85vw;
  top: 10vw;
}

/* HTML for SNAKE :

<div class="snake">
<img src="snake.gif">
</div>

*/

  .main {
  display: flex;
  flex-direction: column;
  margin-right: auto;
  width: 100%;
	max-width: 800px;
  padding: 10px 30px 20px 20px;
  border-radius: 5px;
  color: black;
  font-family: 'Lora';
  font-size: 1.15em;
  line-height: 1.5em;
  display: inline-block;
}

  .mainsmall {
  display: block;
  margin-left: auto;
  margin-right: auto;
  font-family: 'Lora';
  font-size: 1.1em;
  padding: 10px 30px 20px 20px;}
  
/*Start pixelated round borders - not used anymore, but keeping the div name bc whatever*/ 

.pixel-border {
  margin-left: 17vw;
  width: 100%;
	max-width: 700px;
	background: #FBEFEF;
	box-shadow: 15px 15px 15px white, -1em 0 1em white;}

/*MAG STUFF IS MEANT FOR THE BULLETIN BOARD WEBPAGE*/
	
.magpixel-border {
  margin-left: 17vw;
  width: 100%;
	max-width: 1200px;
	background: #FBEFEF;
	box-shadow: 15px 15px 15px white, -1em 0 1em white;}

.magmain 
  {
  display: flex;
  flex-direction: column;
  margin-right: auto;
  width: 100%;
	max-width: 1200px;
  padding: 10px 30px 20px 20px;
  border-radius: 5px;
  color: black;
  font-family: 'Lora';
  font-size: 1.1em;
  line-height: 1.5em;
  display: inline-block;
}

/*ALL IMAGES HAVE ROUNDED BORDERS; PIC IS ONLY USED IN MY ABOUT PAGE I THINK*/

.pic { 
  float: right;
  padding: 10px 10px;
  margin-top: -5%;
  } 


img:hover {
  -webkit-filter: none !important; 
  filter: none !important;
  transition: 0.5s;
}

  @font-face {
    font-family: 'SFNewRepublic';
    src: url(/fonts/SFNewRepublic.ttf);
  }
  
    @font-face {
    font-family: 'lora';
    src: url(/fonts/Lora-Regular.ttf);
  }
  
      @font-face {
    font-family: 'library3am';
    src: url(/fonts/Library3am.otf);
      }

    @font-face {
    font-family: 'DreamGlory';
    src: url(/fonts/DreamGlory.otf);
  }
  
   @font-face {
    font-family: 'StarLitNight';
    src: url(/fonts/StarLitNight.ttf);
  }
    
  @font-face {
  font-family: 'TypeSimple';
  src: url(/fonts/TypeSimple.ttf);
  }
  
  h1{
    font-family: 'SFNewRepublic';
    text-align:center;
    color: #576064;
    font-size: 2.1rem;
  }
  
  h2{
    font-family: 'SFNewRepublic';
  }
  
  h3 {
    font-family: 'lora';
  }

/*OFFSET JUMPLINKS THANK YOU SO MUCH https://www.itsupportguides.com/knowledge-base/tech-tips-tricks/how-to-offset-anchor-tag-link-using-css/*/
:target::before {
  content: "";
  display: block;
  height: 75px;
  margin-top: -75px;
}


hr{
  box-sizing:content-box;
  height:0;
  /*overflow:visible*/
  }

/* COLLAPSIBLE AND CCONTENT AND ITS JS FILE -- https://www.w3schools.com/howto/howto_js_collapsible.asp */

/*.collapsible {
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding: 10px;
  background-color: #BEC6C9;
  color: #343c40;
  width: 75%;
  border: none;
  outline: none;
  font-size: 20px;
  border-radius: 10px;
}

.active, .collapsible:hover {
  background-color: #AFB8BB;
}*/

/*CContent is the content under Tools categories and also blog post titles AND ALSO UNDER COSPLAY*/

.ccontent {
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding: 0% 4%;
  max-height: 0;
	max-width: 600px;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  border-radius: 15px;
  font-size: 1.1em;
}

* {
  box-sizing: border-box;
}


.row {
  display: flex;
  height: 100%;
}

/* Create two equal columns that sits next to each other */
.column {
  flex: 50%;
  padding: 10px;
  flex-wrap: wrap;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  border: 1px solid #b477ce;
}

th, td {
  text-align: left;
  padding: 8px;
  width: 50%;
  height: 30%;
  max-height:300px;
  border: 2px solid #b477ce;
  box-shadow: 5px 5px #E8C7C8;
  font-size: .75em;
  line-height: 1.3em;
}


/*I am so in love with StackOverflow and SnowMonkey for Multiple Modal Images on a Page! https://stackoverflow.com/questions/47798971/several-modal-images-on-page 

USED FOR MY CINEMAGRAPHS IN /ART

Giant thank you*/

#myImg {
  border-radius: 5px;
  padding: 5px 5px;
  cursor: pointer;
  transition: 0.3s;
}

#myImg:hover {
  opacity: 0.7;
}

.modal {
  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-color: rgb(0, 0, 0);
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.9);
  /* Black w/ opacity */
}

.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
}

.center{
  text-align: center;
  margin-bottom: 10rem;
}

#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}

.modal-content,
#caption {
  animation-name: zoom;
  animation-duration: 0.6s;
}

@keyframes zoom {
  from {
    transform: scale(0)
  }
  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: 700px) {
  .modal-content {
    width: 100%;
  }
}

/*NAVBAR PURE CSS FINGERS CROSSED THE SIDEBAR LOOKS NICE NOW!!! freefrontend.com/css-sidebar-menus/ article directed me to Nyugen Tran - codepen.io/uahnbu/pen/jOmMWYG */

:root {
  --background: #EBCABF; /*hover menu item background - matches body background*/
  --navbar-width: 256px;
  --navbar-width-min: 80px;
  --navbar-dark-primary: #C2A8A8; /*background color of sidebar*/
  --navbar-dark-secondary: #3C4745; /* background color of footer box*/
  --navbar-light-primary: #f5f6fa;
  --navbar-light-secondary: #AFB8BB; } /* font color of footer text */

html, body {
  margin: 0;
/*  background: var(--background); */}

#nav-toggle:checked ~ #nav-header {
  width: calc(var(--navbar-width-min) - 16px); }

#nav-toggle:checked ~ #nav-content, #nav-toggle:checked ~ #nav-footer {
  width: var(--navbar-width-min); }

#nav-toggle:checked ~ #nav-header #nav-title {
  opacity: 0;
  pointer-events: none;
  transition: opacity .1s; }

#nav-toggle:checked ~ #nav-header label[for="nav-toggle"] {
  left: calc(50% - 8px);
  transform: translate(-50%); }

#nav-toggle:checked ~ #nav-header #nav-toggle-burger {
  background: var(--navbar-light-primary); }
  #nav-toggle:checked ~ #nav-header #nav-toggle-burger:before, #nav-toggle:checked ~ #nav-header #nav-toggle-burger::after {
    width: 16px;
    background: var(--navbar-light-secondary);
    transform: translate(0, 0) rotate(0deg); }

#nav-toggle:checked ~ #nav-content .nav-button span {
  opacity: 0;
  transition: opacity .1s; }

#nav-toggle:checked ~ #nav-content .nav-button .fas {
  min-width: calc(100% - 16px); }

#nav-toggle:checked ~ #nav-footer #nav-footer-avatar {
  margin-left: 0;
  left: 50%;
  transform: translate(-50%); }

#nav-toggle:checked ~ #nav-footer #nav-footer-titlebox, #nav-toggle:checked ~ #nav-footer label[for="nav-footer-toggle"] {
  opacity: 0;
  transition: opacity .1s;
  pointer-events: none; }

#nav-bar {
  position: absolute;
  z-index:100;
  left: 1vw;
  top: 1vw;
  height: calc(100% - 2vw);
  background: var(--navbar-dark-primary);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  color: var(--navbar-light-primary);
  font-family: 'SFNewRepublic', Verdana, Geneva, Tahoma, sans-serif;
  font-size: 1.2rem;
  overflow: hidden;
  user-select: none; }
  #nav-bar hr {
    margin: 0;
    position: relative;
    left: 16px;
    width: calc(100% - 32px);
    border: none;
    border-top: solid 1px var(--navbar-dark-secondary); }
  #nav-bar a {
    color: white; /*nav-bar link color when hovered over*/
    text-decoration: inherit; }
  #nav-bar a:hover {
    color: gray;}
  #nav-bar input[type="checkbox"] {
    display: none; }

#nav-header {
  position: relative;
  width: var(--navbar-width);
  left: 16px;
  width: calc(var(--navbar-width) - 16px);
  min-height: 80px;
  background: var(--navbar-dark-primary);
  border-radius: 16px;
  z-index: 2;
  display: flex;
  align-items: center;
  transition: width .2s; }
  #nav-header hr {
    position: absolute;
    bottom: 0; }

#nav-title {
  font-size: 1.5rem;
  transition: opacity 1s; }

label[for="nav-toggle"] {
  position: absolute;
  right: 0;
  width: 3rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer; }

#nav-toggle-burger {
  position: relative;
  width: 16px;
  height: 2px;
  background: var(--navbar-dark-primary);
  border-radius: 99px;
  transition: background .2s; }
  #nav-toggle-burger:before, #nav-toggle-burger:after {
    content: '';
    position: absolute;
    top: -6px;
    width: 10px;
    height: 2px;
    background: var(--navbar-light-primary);
    border-radius: 99px;
    transform: translate(2px, 8px) rotate(30deg);
    transition: .2s; }
  #nav-toggle-burger:after {
    top: 6px;
    transform: translate(2px, -8px) rotate(-30deg); }

#nav-content {
  margin: -16px 0;
  padding: 16px 0;
  position: relative;
  flex: 1;
  width: var(--navbar-width);
  background: var(--navbar-dark-primary);
  box-shadow: 0 0 0 16px var(--navbar-dark-primary);
  direction: rtl;
  overflow-x: hidden;
  transition: width .2s; }
  #nav-content::-webkit-scrollbar {
    width: 8px;
    height: 8px; }
  #nav-content::-webkit-scrollbar-thumb {
    border-radius: 99px;
    background-color: #D62929; }
  #nav-content::-webkit-scrollbar-button {
    height: 16px; }

#nav-content-highlight {
  position: absolute;
  left: 16px;
  top: -70px;
  width: calc(100% - 16px);
  height: 54px;
  background: var(--background);
  background-attachment: fixed;
  border-radius: 16px 0 0 16px;
  transition: top .2s; }
  #nav-content-highlight:before, #nav-content-highlight:after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 100%;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    box-shadow: 16px 16px var(--background); }
  #nav-content-highlight:after {
    top: 100%;
    box-shadow: 16px -16px var(--background); }

.nav-button {
  position: relative;
  margin-left: 16px;
  height: 54px;
  display: flex;
  align-items: center;
  color: white; /*font color of sidebar buttons when not hovered over */
  direction: ltr;
  cursor: pointer;
  z-index: 1;
  transition: color .2s; }
  .nav-button span {
    transition: opacity 1s; }
  .nav-button .fas {
    transition: min-width .2s; }
  .nav-button:nth-of-type(1):hover {
    color: var(--navbar-dark-primary); }
    .nav-button:nth-of-type(1):hover ~ #nav-content-highlight {
      top: 16px; }
  .nav-button:nth-of-type(2):hover {
    color: var(--navbar-dark-primary); }
    .nav-button:nth-of-type(2):hover ~ #nav-content-highlight {
      top: 70px; }
  .nav-button:nth-of-type(3):hover {
    color: var(--navbar-dark-primary); }
    .nav-button:nth-of-type(3):hover ~ #nav-content-highlight {
      top: 124px; }
  .nav-button:nth-of-type(4):hover {
    color: var(--navbar-dark-primary); }
    .nav-button:nth-of-type(4):hover ~ #nav-content-highlight {
      top: 178px; }
  .nav-button:nth-of-type(5):hover {
    color: var(--navbar-dark-primary); }
    .nav-button:nth-of-type(5):hover ~ #nav-content-highlight {
      top: 232px; }
  .nav-button:nth-of-type(6):hover {
    color: var(--navbar-dark-primary); }
    .nav-button:nth-of-type(6):hover ~ #nav-content-highlight {
      top: 286px; }
  .nav-button:nth-of-type(7):hover {
    color: var(--navbar-dark-primary); }
    .nav-button:nth-of-type(7):hover ~ #nav-content-highlight {
      top: 340px; }
  .nav-button:nth-of-type(8):hover {
    color: var(--navbar-dark-primary); }
    .nav-button:nth-of-type(8):hover ~ #nav-content-highlight {
      top: 394px; }

#nav-bar .fas {
  min-width: 3rem;
  text-align: center; }
  
#nav-footer {
  font-family: 'lora', Verdana, Geneva, Tahoma, sans-serif;
  position: relative;
  width: var(--navbar-width);
  height: 54px;
  background: var(--navbar-dark-secondary);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  z-index: 2;
  transition: width .2s, height .2s; }

#nav-footer-heading {
  position: relative;
  width: 100%;
  height: 54px;
  display: flex;
  align-items: center; }

#nav-footer-avatar {
  position: relative;
  margin: 11px 0 11px 16px;
  left: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
  transform: translate(0);
  transition: .2s; }
  #nav-footer-avatar img {
    height: 100%; }

#nav-footer-titlebox {
  position: relative;
  margin-left: 16px;
  width: 10px;
  display: flex;
  flex-direction: column;
  transition: opacity 1s; }

#nav-footer-subtitle {
  color: var(--navbar-light-secondary);
  font-size: 1rem; }

#nav-footer-toggle:checked + #nav-footer {
  height: 30%;
  min-height: 54px; }
  #nav-footer-toggle:checked + #nav-footer label[for="nav-footer-toggle"] {
    transform: rotate(180deg); }

label[for="nav-footer-toggle"] {
  position: absolute;
  right: 0;
  width: 3rem;
  height: 100%;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: transform .2s, opacity .2s; }

#nav-footer-content {
  margin: 0 16px 16px 16px;
  border-top: solid 1px var(--navbar-light-secondary);
  padding: 16px 0;
  color: var(--navbar-light-secondary);
  font-size: .9rem;
  overflow: auto; }
  #nav-footer-content::-webkit-scrollbar {
    width: 8px;
    height: 8px; }
  #nav-footer-content::-webkit-scrollbar-thumb {
    border-radius: 99px;
    background-color: #D62929; }

/*NEW NEW ACCORDION DESIGN FOR TOOLS AND STUFF I LOVE IT KATHERINE KATO WOOOO https://codepen.io/kathykato/pen/MoZJom*/

 .container {
	 margin: 0 auto;
	 padding: 4rem;
	 width: 48rem;
}
 .accordion .accordion-item {
	 border-bottom: 1px solid #e5e5e5;
}
 .accordion .accordion-item button[aria-expanded='true'] {
	 border-bottom: 1px solid #534E6A;
}
 .accordion button {
	 position: relative;
	 display: block;
	 text-align: left;
	 width: 100%;
	 padding: 1em 0;
	 color: #534E6A;
  transition: max-height 0.2s ease-out;
	 font-size: 1.4rem;
	 font-weight: 400;
	 border: none;
	 background: none;
	 outline: none;
}
 .accordion button:hover, .accordion button:focus {
	 cursor: pointer;
	 color: #70759A;
}
 .accordion button:hover::after, .accordion button:focus::after {
	 cursor: pointer;
	 color: #70759A;
	 border: 1px solid #03b5d2;
}
 .accordion button .accordion-title {
	 padding: 1em 1.5em 1em 0;
}
 .accordion button .icon {
	 display: inline-block;
	 position: absolute;
	 top: 18px;
	 right: 0;
	 width: 22px;
	 height: 22px;
	 border: 1px solid;
/*	 border-radius: 22px;*/
}
 .accordion button .icon::before {
	 display: block;
	 position: absolute;
	 content: '';
	 top: 9px;
	 left: 5px;
	 width: 10px;
	 height: 2px;
	 background: currentColor;
}
 .accordion button .icon::after {
	 display: block;
	 position: absolute;
	 content: '';
	 top: 5px;
	 left: 9px;
	 width: 2px;
	 height: 10px;
	 background: currentColor;
}
 .accordion button[aria-expanded='true'] {
	 color: #383c37;
}
 .accordion button[aria-expanded='true'] .icon::after {
	 width: 0;
}
 .accordion button[aria-expanded='true'] + .accordion-content {
	 opacity: 1;
	 max-height: 100em;
	 transition: all 200ms linear;
	 will-change: opacity, max-height;
}
 .accordion .accordion-content {
	 opacity: 0;
	 max-height: 0;
	 overflow: hidden;
	 transition: opacity 200ms linear, max-height 200ms linear;
	 will-change: opacity, max-height;
}
 .accordion .accordion-content p {
	 font-size: 1.15rem;
	 font-weight: 300;
	 margin: 2em 0;
}

/*HUGE GIANT THANK YOU TO STEPHANIE FOR HER NOM NOM GALLERY!!! https://codepen.io/ramenhog/pen/MpORPa THIS IS FOR MY 3D DESIGNS PAGE*/

.section {
  margin-left:13vw;
  display: none;
  padding: 2rem;
  
  @media screen and (min-width: 768px) {
    padding: 4rem;
  }
  
  @supports(display: grid) {
    display: block;
  }
}


.grid {
  display: grid;
  grid-gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-auto-rows: 150px;
  grid-auto-flow: row dense;
}

.item {
	 position: relative;
	 display: flex;
	 flex-direction: column;
	 justify-content: flex-end;
	 box-sizing: border-box;
   background: rgb(255,255,255, .5);
/*	 color: #fff;*/
	 grid-column-start: auto;
	 grid-row-start: auto;
/*	 color: #fff;
/*	 background: url('/3D/toothpastecoupler.png?dpr=2&auto=format&fit=crop&w=1500&h=1000&q=80&cs=tinysrgb&crop=');*/
/*	 background-size: cover;
	 background-position: center;*/
	 box-shadow: -2px 2px 10px 0px rgba(68, 68, 68, 0.4);
	 transition: transform 0.3s ease-in-out;
	 counter-increment: item-counter;
	 overflow: hidden;
/*	 object-fit: fill; 
	 object-position: 50% 25%;*/
	 text-align: center;
}

/* .item:nth-of-type(3n) {
	 background-image: url('https://images.unsplash.com/photo-1422255198496-21531f12a6e8?dpr=2&auto=format&fit=crop&w=1500&h=996&q=80&cs=tinysrgb&crop=');
}
 .item:nth-of-type(4n) {
	 background-image: url('https://images.unsplash.com/photo-1490914327627-9fe8d52f4d90?dpr=2&auto=format&fit=crop&w=1500&h=2250&q=80&cs=tinysrgb&crop=');
}
 .item:nth-of-type(5n) {
	 background-image: url('https://images.unsplash.com/photo-1476097297040-79e9e1603142?dpr=2&auto=format&fit=crop&w=1500&h=1000&q=80&cs=tinysrgb&crop=');
}
 .item:nth-of-type(6n) {
	 background-image: url('https://images.unsplash.com/photo-1464652149449-f3b8538144aa?dpr=2&auto=format&fit=crop&w=1500&h=1000&q=80&cs=tinysrgb&crop=');
}
/* .item:after {
/*	 content: '';
/*	 position: absolute;
/*	 width: 100%;
/*	 height: 100%;
/*	 background-color: black;
/*	 opacity: 0.3;
/*	 transition: opacity 0.3s ease-in-out;
}*/
 .item:hover {
	 transform: scale(1.05);
}
 .item:hover:after {
	 opacity: 0;
}
 .item--medium {
	 grid-row-end: span 2;
}
 .item--large {
	 grid-row-end: span 3;
}
/* .item--full {
	 grid-column-end: auto;*/
}
 @media screen and (min-width: 768px) {
	 .item--full {
		 grid-column: -1;
		 grid-row-end: span 2;
	}
}
 .item__details {
	 position: relative;
	 z-index: 1;
	 padding: 15px;
	 color: #444;
	 background: #fff;
	 text-transform: lowercase;
	 letter-spacing: 1px;
	 color: #828282;
}
 .item__details:before {
	 content: counter(item-counter);
	 font-weight: bold;
	 font-size: 1.1rem;
	 padding-right: 0.5em;
	 color: #444;
}

 /*I AM TRYING A MAGAZINEY LOOK FROM https://codepen.io/mcraiganthony/pen/NxGxqm THIS IS FOR MY BULLETIN BOARD HOME PAGE*/

@gray-darker:               #444444;
@gray-dark:                 #696969;
@gray:                      #999999;
@gray-light:                #cccccc;
@gray-lighter:              #ececec;
@gray-lightest:             lighten(@gray-lighter,4%);

*,
*::before,
*::after { 
  box-sizing: border-box;
}

img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

.btn {
  background-color: white;
  border: 1px solid @gray-light;
  //border-radius: 1rem;
  color: @gray-dark;
  padding: 0.5rem;
  text-transform: lowercase;
}

.btn--block {
  display: block;
  width: 100%;
  font-size:1.2rem;
}
 
.cards {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.cards__item {
  display: flex;
  padding: 1rem;
  @media(min-width: 40rem) {
    width: 50%;
  }
  @media(min-width: 56rem) {
    width: 33.3333%;
  }
}

.card {
  background-color: white;
/*  border-radius: 0.25rem;*/
  box-shadow: 0 20px 40px -14px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  &:hover {
    .card__image {
      filter: contrast(100%);
    }
  }
}

.card__content {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 1rem;
}

.card__content a {margin-top: auto; /* Pushes the button to the bottom */}

.card img {
  width: 100%;
  height: auto;
  overflow: hidden;
  filter: contrast(70%);
  //filter: saturate(180%);  
  position: relative;
  transition: filter 0.5s cubic-bezier(.43,.41,.22,.91);;
  &::before {
/*    content: "";*/
  display: block;
  padding-top: 56.25%; // 16:9 aspect ratio
  }
/*  @media(min-width: 40rem) {
    &::before {
      padding-top: 66.6%; // 3:2 aspect ratio*/
    }
}

.card__image {
  max-height: 10rem;}

.card__title {
  color: @gray-dark;
  font-size: 1.45rem;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.card__text {
  flex: 1 1 auto;
  font-size: 1.1rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

/*HORIZONTAL TABS IN THE ART PAGE VIA ???? */

