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

h1 
{
  color: purple;
  text-align: center;
}

main
{
  color: aqua;
}

body
{
  background-image: url("https://wyszurd.neocities.org/image/background.png");
  background-size: 1920px 1700px;
  background-color: white;
  color: black;
  font-family: "Comic Sans MS";
}

p
{
  color: black;
  text-align: center;
}

h3
{
  color: red;
  text-align: center;
}  

h2
{
  color: aqua;
  text-align: center;
}

.center
{    
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}  

.lefty
{
 float:left;
 text-align: left;
}

.righty
{
 float:right;
 text-align: right;
}

li
{
	text-align: left;
}

.h1image
{
	height: 100px;
	width: 100px;
}

.joel
{
  height: 100px;
  width: 200px;
}  

.watchparty
{    
position: relative;
left: 180px;
}  

.television
{    
  display: block;
  margin-left: auto;
  margin-right: auto;
  height: 200px;
  width: 400px;
}

.gabe
{    
  display: block;
  margin-left: auto;
  margin-right: auto;
  height: 250px;
  width: 500px;
}

div.gallery {
  border: 1px solid #ccc;
}

div.gallery:hover {
  border: 1px solid #777;
}

div.gallery img {
  width: 100%;
  height: auto;
}

div.desc {
  padding: 15px;
  text-align: center;
}

* {
  box-sizing: border-box;
}

.responsive {
  padding: 0 6px;
  float: left;
  width: 24.99999%;
}

@media only screen and (max-width: 700px) {
  .responsive {
    width: 49.99999%;
    margin: 6px 0;
  }
}

@media only screen and (max-width: 500px) {
  .responsive {
    width: 100%;
  }
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}