/*
  STYLE GUIDE STYLING 
  Default styling for the style guide 
*/

#styleguide-header {
  font-family: 'Damion', cursive;
  font-size: 2rem;
  text-align: center;
}

body {
  font-family: 'Nanum Gothic', sans-serif;
  font-weight:400;
  padding: 2rem;
  background-color: white;
}

.element {
  padding-bottom: 2rem;
  border-top-width: 0.15rem;
/*  border-top-style: solid;
  border-top-color: black;*/
}

 .back_ground_img{
    text-align: center;
    width: 100%;
    height: auto;
    z-index: -1;
    position: fixed;
    background-color:white;
    background-repeat: no-repeat;
  }

/*nav {

  flex-basis:80%;
  text-align: center;
  padding-top:1rem;
  color: #FFF;
  
  text-decoration: none;
  border-radius: 0.25em;
 
  font-size: 18px;


}

nav a{
  justify-content: flex-end;
 display:inline-block;
  margin-left: 0.5%;
  margin-right: 0.5%;
  text-decoration: none;
  color:#5F6973;
  transition:color 0.5s;

}

nav a:hover, nav a:focus {
  color:#B1BC9E;
}
 nav a:after{
    content:"";
   display: block;
    background-color:gray;
    height:2px;
    transform: scale(0);
    transform-origin:left;
    transition: all 1s;
  }

  nav a:hover:after{
    transform: scale(1);
  }*/

  nav {
    position: absolute;
    width: 100vw;
    height: 150vh;
    background-color: black;
    font-size: 2rem;
    display: flex;
    justify-content: center;
    line-height:200%;
    align-items: center;
    text-align: center;
    display: none;
    z-index: 1000;
    color: black;
    padding-top: 15vw;
    color: white;
    top:0;
    text-decoration: none;
}

nav a:hover {
    color: rgb(254, 205, 47);
    -webkit-animation-name: pulse;
    animation: pulse 1s;
    text-decoration: none;
}


nav a {
    display: block;
    color: white;
    text-decoration: none;
}

.close-menu,
.open-menu {
    position: absolute;
    right: 2rem;
    top: 2rem;
    color: black;
    font-size: 2rem;
    font-weight: 600;
    font-family: 'Nanum Gothic', sans-serif;
    font-weight:700;
    text-decoration: none;
}

.open-menu:hover {
    color: rgb(254, 205, 47);
    -webkit-animation-name: swing;
    animation: swing 1s;
    text-decoration: none;
}

.close-menu {
    color: white;
    text-decoration: none;
}

.close-menu:hover {
    color: rgb(254, 205, 47);
    -webkit-animation-name: swing;
    animation: swing 1s;
    text-decoration: none;
}

h2 {
  margin-top: 6rem;
  font-weight: bold;
  color: rgb(254,205,47);
  text-align: right;
  background: black;
  padding: 3rem;
}

h3 {
  font-weight: bold;
  margin-top: 1rem;
  padding: 1rem;
  color: black;
  background-color:rgb(254,205,47);
  text-align: center;
}

h4{
  margin-bottom:2rem;
}

p {
  margin-bottom: 0em;
  font-size: 1rem;
    font-weight: 300;
}


code {
  background-color: #EEE;
  padding: 0.5rem;
  display: block;
}

/* 
  INTERACTIVE ELEMENTS -------------------
*/

/*Styling for in-text link*/

.visit-link{
    text-align:center;
    border-radius:100%;
    display:inline-block;
    width:50px;
    height:50px;
    border:2px solid rgb(254,205,47);
    padding:0.5rem;
    padding-top:1rem;
    padding-bottom:0.4rem;
    transition: all 0.5s;
    margin-top: -4rem;
    font-size: 1.5rem;
    font-weight: 500;
    color: black;
    text-decoration: none;
  }

  .visit-link:hover{
    transform:scale(1.2);
    color: rgb(254,205,47);
    text-decoration: none;
  }

/*Styling for navigation button*/
.btn-default {
  margin-top:3rem;
  font-family: Avenir;
  font-weight: 600;
  font-size:1.5rem;
  color: rgb(254,205,47);
}

.btn-default:hover {
  -webkit-animation-name: shake;
  animation: shake 1s;
  text-decoration: none;
}






/*Headings-------------*/


.heading1{
  font-family: 'Damion', cursive;
  font-size: 5rem;
}

.heading2{
  font-weight: 500;
  font-size:3rem;
}

.heading3{
  font-size: 2rem;
  font-weight:400;
}

.heading4{
  font-size: 1.5rem;
  font-weight:300;
  margin-bottom: 20px;
}


/*Paragraphs-------------*/
.paragraphs {
  padding: 2em;
  width:50%;
}


/*Bullet list-------------*/

.blist ul{
  font-family:"Lato"; 
  border: 1px solid red;
}

/*
  Numbered lists----------------
*/
.nlist {
  display:flex;
  padding: 10px;
  background-color: #ffffff;
  line-height: 2em;
  border: 2px solid #00000030;
  border-radius: 0.2em;
  width:20%;
}

/* 
  COMBINED ELEMENTS -------------------
*/

/*
  Navigation bar----------------
*/



/*
  Product lisitng-----------------
*/

.grid{
  display:flex;
  justify-content: space-between;
  width: 80%;
}

.grid>div{
  flex-basis: 50%;
  
}

.grid>div:hover{
/*  box-shadow: 0px 3px 3px #bbbbbb; */
}

.grid img{
  width:100%;
  transform:scale(1);
  transition:transform 1s;
 

}

.pic{
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.grid img:hover{
  transform:scale(1.2);

}


@media only screen and (max-width: 500px){
  .grid{
    flex-direction: column;
  }
}







/*
  Branding ideas-----------------
*/
.branding>h4 {
  color: #919c7e;
  font-style: italic;
}


