/* 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." */
/* HOME PAGE STYLES */
@import url('https://fonts.googleapis.com/css2?family=Jacquard+12&family=UnifrakturMaguntia&display=swap');

h1{
  font-family: "Jacquard 12";
}


body {
  background-image: url("https://kitschhabit.neocities.org/leopard2.jpg");
  color: black;
}
  
  
  header {
  background-color: maroon;
  border-style: solid;
  border-width: 3px;
   justify-content: center;
    align-items: center;
    display: flex;
  }
  
  .bannertext{
    display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 252px;
  padding-right: 252px;
  padding-bottom: 10px;
  line-height: 0.75;

  }
  
  #headerimages > h1, p, #headerimages > div {
    display: inline-block;
}
  
  
  .bats1{
    padding-top:20px;

  }
  
  
  .bats2{
    padding-top:20px;
  
  }
  
  
  
  .navbar {
  list-style-type: none;
  margin: 10px;
  padding: 10px;
  background-color: maroon;
  display: flex;
  justify-content: center;
  border-style: solid;
  border-width: 3px;
}

.active{
  padding: 40px;
  margin: 5px;
 
}

.row{
  display: flex;
  justify-content: center;
  border-style: solid;
  border-width: 3px;
  margin: 10px;
  padding: 20px;
}

.column1 {
  background-color: maroon;
  border-style: solid;
  border-width: 3px;
  margin: 10px;
  padding: 10px;
  flex: 40%
}

.profilepic{
 
  display: block;
  border-style: solid;
  border-width: 1px;
  float: left;
  position: relative;
}

.imageback{
  position: absolute;
  display: block;
  border-style: solid;
  border-width: 3px;
}

.imagefront{
  position: absolute;
  display: block;
  border-style: solid;
  border-width: 3px;
}





.information{
  display: block;
 margin-right: 42px;
 margin-top: -20px;

}

.bio{
  list-style-type: none;
  margin-top: 20px;
  
}

.column2 { 
  background-color: maroon;
  border-style: solid;
  border-width: 3px;
  margin: 10px;
  padding: 25px;
  flex: 60%;
}

.stars{
  float: right;
 padding-top: 40px;
 right: 0px;
 bottom: 0px;
}
  
/* Create two unequal columns that floats next to each other */
/* Left column */
.leftcolumn {   
  float: left;
  width: 75%;
}

/* Right column */
.rightcolumn {
  float: left;
  width: 25%;
  padding-left: 20px;
}

/* Fake image */
.fakeimg {
  background-color: #aaa;
  padding: 20px;
  border-style: solid;
  border-width: 1px;
}

/* Add a card effect for articles */
.card {
   background-color: maroon;
   padding: 20px;
   margin-top: 20px;
   border-style: solid;
  border-width: 3px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}  
  
  iframe {
  width: 100%;
  height: 100%;
  }
  
  .blinkies{
    border-style: dotted;
  border-width: 5px;
  margin: 5px;
  padding: 5px;
  justify-content: center;
  }
  
/* Footer */
footer {
  padding: 20px;
  text-align: center;
  background: #ddd;
  margin-top: 20px;
  background-color: maroon;
  border-style: solid;
  border-width: 3px;
}

/* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 800px) {
  .leftcolumn, .rightcolumn {   
    width: 100%;
    padding: 0;
     
}
}
/*END OF HOME PAGE STYLES*/

/*START OF POST STYLES*/

.card{
   background-color: maroon;
   padding: 20px;
   margin-top: 20px;
   border-style: solid;
  border-width: 3px;
}

.fakeimg{
   background-color: #aaa;
  padding: 20px;
  border-style: solid;
  border-width: 1px;
}

/* END OF POST STYLES*/


/*START OF CONTACT STYLES */
.contactme{
  display: flex;
  justify-content: center;
  border-style: solid;
  border-width: 3px;
  margin: 10px;
  padding: 20px;
}

.columns1 {
  background-color: maroon;
  border-style: solid;
  border-width: 3px;
  margin: 10px;
  padding: 10px;
  flex: 60%
}

.columns2 { 
  background-color: maroon;
  border-style: solid;
  border-width: 3px;
  margin: 10px;
  padding: 10px;
  flex: 20%;
}

/*END OF CONTACT STYLES*/
