/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

@import url('https://fonts.googleapis.com/css2?family=Chivo:ital,wght@0,100..900;1,100..900&display=swap');

/* SCROLLBAR SHIT HERE */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #191B28;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #F6EBEA;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #FF8DB4;
}

/*END SCROLLBAR SHIT */
  
body {
  margin: 0;
  background-color: #191b28;
}

p {
  font-size: 12px;
  color: #F6EBEA;
  font-family: courier new;
  text-align: left;
}

h1 {
  font-size: 40px;
  color: #F6EBEA;
  font-weight: 700;
  font-family: chivo;
  text-transform: uppercase;
  text-align: center;
  text-shadow: 1px 1px 4px #ED1E65, -1px -1px 4px #1F91ED;
  margin: 10px;
  margin-bottom: -10px;
}

h2 {
  font-size: 20px;
  color: #F6EBEA;
  font-weight: 700;
  font-family: chivo;
  text-transform: uppercase;
  text-align: center;
  text-shadow: 1px 1px 4px #ED1E65, -1px -1px 4px #1F91ED;
  margin: 5px;
  margin-bottom: -5px;
}

#jail {
  width: 90%;
  margin: auto;
  margin-top: 100px;
  display: flex;
  align-content: flex-start;
  align-items: flex-start;
  justify-content: center;
  flex-direction: row;
}

#navcontainer {
 width: 150px;
 margin-right:15px;
 position: relative;
 top: -20px;
 left: -70px;
}

#container {
  width: 900px;
  position: relative;
  margin-right: 30px;
  top: 10px;
  left: -60px;
}
  
#main-img {
  height: 150px;
  width: 100%;
  margin-bottom: 10px;
  border: 1px solid #F6EBEA;
  background-color: #F6EBEA;
  background-image: url("https://f2.toyhou.se/file/f2-toyhou-se/images/69293182_AeXHGZtlleryDXR.jpg");
  background-position: center;
  background-size: 160%;
  box-shadow: 2px 2px 7px 0px #ED1E65, -2px -2px 7px 0px #1F91ED;
}

#navbox {
  height: 180px;
  width: 120px;
  padding: 0px 15px 0px 15px;
  background-color: #191b28;
  border: 1px solid #F6EBEA;
  color: white;
  font-family: courier new;
  align-content: space-between;
  box-shadow: 2px 2px 7px 0px #ED1E65, -2px -2px 7px 0px #1F91ED;
  overflow: hidden;
  margin-bottom: 10px;
}

nav {
  color: white;
  font-family: courier new;
  align-content: space-between;
  overflow: hidden;
  margin-top: -10px;
}

#main {
  max-height: 500px;
  width: 100%;
  background-color: #191b28;
  border: 1px solid #F6EBEA;
  color: white;
  font-family: courier new;
  font-size:12px;
  text-align: left;
  box-shadow: 2px 2px 7px 0px #ED1E65, -2px -2px 7px 0px #1F91ED;
  overflow-y: scroll;
  margin-bottom: 15px;
  padding: 5px;
}

#floatcontainer {
  max-height: 200px;
  width: 100%;
  background-color: #191b28;
  border: 1px solid #F6EBEA;
  color: white;
  font-family: courier new;
  font-size:12px;
  text-align: left;
  box-shadow: 2px 2px 7px 0px #ED1E65, -2px -2px 7px 0px #1F91ED;
  overflow-y: scroll;
  margin-bottom: 15px;
  padding: 5px;
}

#teenie {
  height: 170px;
  width: 120px;
  padding: 0px 15px 0px 15px;
  background-color: #191b28;
  border: 1px solid #F6EBEA;
  color: white;
  font-family: courier new;
  align-content: space-between;
  box-shadow: 2px 2px 7px 0px #ED1E65, -2px -2px 7px 0px #1F91ED;
  overflow: hidden;
}

#main p {
  padding: 0px 15px 0px 15px;
}

#floatcontainer p {
  padding: 0px 15px 0px 15px;
}

.navdiv {
  list-style-type: none;
  padding: 0;
  font-size: 12px;
}

.navdiv p {
  font-size: 12px;
  color: #F6EBEA;
  font-family: courier new;
  text-align: left;
}

.navdiv a {
  color:#FF8DB4;
  text-decoration: none;
  text-transform: uppercase;
}

.navdiv a:hover {
  color: #8AD4FF;
  text-decoration: none;
}

/* GALLERY */

/* Create four equal columns that sits next to each other */

#row {
  display: flex;
  flex-wrap: wrap;
  padding: 0 4px;
}

div .column {
  flex: 20%;
  max-width: 100%;
  padding: 5px;
}

div .column img {
  margin-top: 8px;
  vertical-align: middle;
  border: 1px white solid;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media (max-width: 800px) {
div  .column {
    flex: 50%;
    max-width: 50%;
  }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media (max-width: 600px) {
div  .column {
    flex: 100%;
    max-width: 100%;
  }
}
