@import url('https://fonts.googleapis.com/css2?family=Shadows+Into+Light&display=swap');


* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
   
}

:root {
  --color-1: black;
  --color-2: white;
  --color-3:rgba(255, 255, 255, 0.4);
  --color-4: rgb(128, 128, 128);
  --shadow-1: 4px 4px 4px black;
  --shadow-2: 4px 4px 4px white;

  --blue-1: rgb(60, 153, 220);
  --blue-2: rgb(102, 211, 250);
  --blue-3: rgb(43, 44, 170);
  }

  .flex {
    display: flex;
    align-items: center;
    justify-content: center;
  }

body {
  background-image: url("images/207k9-bg-map.png");
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100vh;
  background-color: #000;
  color: white;
  background-attachment: scroll;
}
 
.heroBox {
background-color: #000;

}

.heroBox img {
  width: 100%;
  height: auto;
}

.hero {
  text-align: center;
  text-shadow: 4px 4px 4px black;
  margin-top: 4rem;
}

.link_grid {
  display: flex;
  align-items:  center;
  justify-content: center;
  margin-top: 1rem;
}
 


.link_container {
  /* background-color: rgba(255, 255, 255, 0.2); */
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
}
 
.fgs_link,
.sss_pic,
.outfit_pic {
  height: 10vh;
  width: auto;
  border-radius: .5rem;
  border: 1px solid black;
  /* box-shadow: .5rem .5rem .5rem gray; */
  margin: 2rem 0;
  
}

.sss_link {
  flex-direction: column;
  
}

/* .sss_link,
.fgs_link,
.outfit_link {
  flex-direction: column;
}
   */
 

 
  
  
  



@media (min-width:600px) {
  body {
    background-attachment: fixed;
  }
  .hero_h1 {
    font-size: 5rem;
    margin-top: 3rem;
  }

  .hero_h2 {
    font-size: 3rem;
  }
  
  .SSS_btn {
    font-size: 1.6rem;
    padding: 1rem;
    margin: 0;
  }

  .link_grid {
    height: 70vh;
    
  }

  .link_container {
    flex-direction: row;
  }

  .fgs_link,
.sss_pic,
.outfit_pic {
  height: 20vh;
}

  .sss_link {
    flex-direction: row;
  }
   
  .fgs_link,
  .sss_pic,
  .outfit_pic { 
    margin: 2rem;
  }

}
 
/* .fgs_link {
  background-image: url(https://images.unsplash.com/photo-1622817251249-59278872a59a?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1889&q=80);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
} */

/* .fgs_link a,
.outfit_link a {
  font-family: 'Shadows Into Light', cursive;
  text-decoration: none;
  color: white;
  text-shadow:
  3px 3px 0 #000,
  -1px -1px 0 #000,
  1px -1px 0 #000,
  -1px 1px 0 #000,
  1px 1px 0 #000;
} */


/* footer start******************* */

footer {
  color: var(--color-2);
  overflow: hidden;
  text-shadow: var(--shadow-1);
}

.fter-column-1,
.fter-column-2 {
  flex-grow: 1;
  min-width: 150px;
  text-align: center;
  line-height: 2rem;
  margin: 1rem 3rem;
  padding: 1rem;
}

.fter-column-1 {
  line-height: 3rem;
}

.ftr-link {
  text-decoration: none;
  color: var(--color-2);
  margin: .5rem;
  padding: .5rem;
  transition: color 1s;
  cursor: pointer;
  transition: font-size .6s ease-in-out, letter-spacing .6s ease-in-out, text-decoration .6s ease-in-out;
}

footer i {
  color: white;
}

.footer-btm {
  margin: 2rem 3rem 4rem 3rem;
  padding: 2rem;
  text-align: center;
  margin-top: 0;
  font-size: .9rem;
}
  
.footer-btm span {
  padding-top: 3rem;
}

.copyright {
  margin-top: 1rem;
}
  
@media (min-width:45rem) {
 
  .footer-container {
    flex-direction: row;
    margin-left: 5rem;
    margin-right: 5rem;
  }
     
  .fter-column-1,
  .fter-column-2 {
    margin: 1rem 3rem 4rem 3rem;
  }

  .ftr-link:hover,
  .ftr-lnk:active {
    font-size: 1.3rem;
    letter-spacing: .1rem;
    text-decoration: underline;
  }

  .footer-btm {
    margin-left: auto;
    margin-right: auto;
    width: 60vw;
    border-top: 3px solid var(--color-2);
  }
}

       
  

