/* Tried making it more user friendly and taking the comments on the peer review, changed background image, made hover navigation, created media queries */

@media only screen and (max-width: 600px) {
   .card{
      /* trying to position to the center when screen gets smaller */
      position:center; 
      float:left;
      width:50px;
   }
   .row{
      position: center;
      width:0%;
      /* tryingto get the width distance to decrease */
   }

   .container{
      float:none;
      /* no container anymore when screen is smaller */
   }
   .col-6{
      width:100%;
      /* want each column to be seperate */
   } 

 }

body{
    background: white;
    background-image: url('orange-green_3.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    
    /* 228,225 */
    /* min-height: 500px; */
    /* background-attachment: fixed; */
    /* positions image to center */

}


/* all the fonts */
@font-face {
    font-family: font1;
    src: url(Challenge.ttf);
 }
 @font-face {
    font-family: font2;
    src: url(BlankNote-Regular.otf);
 }
 @font-face {
    font-family: font3;
    src: url(CormorantGaramond-Medium.ttf);
 }
 @font-face {
    font-family: font4;
    src: url(Aileron-Light.otf);
 }
 @font-face {
    font-family: font5;
    src: url(couriernew.otf);
 }
 @font-face {
    font-family: font6;
    src: url(Montez-Regular.ttf);
 }
 @font-face {
    font-family: font7;
    src: url(Autography.otf);
 }
 @font-face {
    font-family: font8;
    src: url(aAutoSignature.ttf);
 }
 @font-face {
    font-family: font9;
    src: url(kinda_sweet.ttf);
 }
 @font-face {
    font-family: font10;
    src: url(lust_slim.ttf);
 }
 @font-face {
    font-family: font11;
    src: url(maybe_one_day.ttf);
 }
 @font-face {
    font-family: font12;
    src: url(partner.otf);
 }
 @font-face {
    font-family: font13;
    src: url(the_artisan.otf);
 }

 h1{
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
    font-family: font7;
    text-decoration: underline;
    font-size: 50px;
    font-weight: bold;
    background-color: white; padding:20px;
}

h2{
    font-family: font12;
    
    /* margin-left:50px; */
    /* margin-right:50px; */ 
}
h3{
    font-family: font3;
    /* font-size: 50px; */
    margin-left:50px;
    background-color: white; padding:20px;
    
}
h5{
    font-family: font10;
    /* background-color: white; padding:20px; */
}

p{
    font-family: font3;
    /* background-color: white; padding:20px; */
}

.card{
    /* background-color:#D97855; */
    /* background-color:black; */
    /* to add distance */
    margin-bottom: 50px;

}
.card1{
    /* background-color:#A1BF9D; */
    /* background-color:white; */

    margin-bottom: 50px;
}
.nav-item a{
    font-family: font7;
    color:black;
    /* make the font a bit bigger */
    font-size: 30px;
       font-weight: bolder;
   text-decoration: none;
   /* padding: 13px; */
	font-weight: 300;
   letter-spacing: 2px;
    /* @include media-breakpoint-up(md){
       color:white;  */
    
}
/* hover change of color */
.nav-item a:hover {
   color: #ffffff;
   background-color: lightblue;

   /* background-color: #D97855; */
   /* position: relative; */
   display: inline-block;
   
 }
/* .navbar navbar-light bg-light{
    background-color:#A1BF9D;
} */

/* trying to make cards not stack up */
@media only screen and (max-width: 800px) {
   body {
     font-weight: 200;
     color:pink;

   }
   .card{
      padding:20px;
      float:auto;
   }
 }