/* 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." */

img {
  display:block;
  width:550px;
  height:150px;
  object-fit:cover;
  object-position: 0% 100%;
}

body {
  background-color: midnightblue;
  color: black;
  font-family: sans-serif;
  margin:1%;
}

nav {
 display:block; 
 font-size:24px;
}
nav ul {
  list-style-type:none;
  padding:16px;
  padding-top:25px;
  text-align:center;
}
nav ul li {
  display:inline-block;
  vertical-align:middle;
  border-right: 2px solid gold;
  padding-right: 10px;
  padding-left:10px
}
nav ul li:first-child {
  border-right:none
}
nav ul li:last-child {
  border-right:none
}
nav ul li a {
  text-decoration:none;
  color:white
}

pinboard {
  display:block;
  background-image:url("corkboardbkg.png");
  text-align:center;
  padding:32px;
  padding-right:32px;
  padding-left:32px;
}
pb-poster {
  display:inline-block;
  background-color:white;
  width:50%;
  height:64%;
  border-style:solid;
  border-width:20px;
  border-color:white;
  text-align:center;
}

header {
 color:dodgerblue; 
 font-family: sans-serif;
 text-transform:uppercase;
 font-size:50pt;
 text-align:center;
 font-weight:bold;
 float:none;
}
h1 {
  color: crimson
}
h2 {
  color:dodgerblue
}

h3 {
  color:gold;
  text-transform:uppercase
}
date {
  color:dodgerblue;
  float:right;
  border-width:10px;
  text-transform:capitalize;
  font-weight:bold;
  margin-top:10px
}
p {
  color:white
}
p i a {
 color:dodgerblue 
}  
hr {
 border-top:5px solid crimson;
 color:crimson
}

aboutboard{
  display:block;
  background-color:midnightblue;
  text-align:center;
  padding:32px;
  padding-right:32px;
  padding-left:32px;
}
aboutblock {
  display:inline-block;
  background-color:dodgerblue;
  color:white;
  padding:20px;
  width:40%;
  height:64%;
  text-align: center;
  vertical-align: text-top;
  border:10px solid midnightblue
}

.button {
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
}

#more {display: none;}

@media all and (max-width:600px) {
 img {
  width:350px;
  height:100px;
 }
 aboutblock {
   width:85%;
 }
 header {
  font-size: 50px 
 }
body {
  font-size: 20px
}
pb-poster {
 width:75%;
 height:57.95%;
}
.contact{
  width:40%
}
.link{
  font-size:30px;
  display:block
}
.bluesky {
  display:inline-block;
  width:20px;
  height:20px;
  object-fit:cover;
  object-position: 10% 40%;
}
.mastodon {
  display:inline-block;
  width:100px;
  height:100px;
}
}
