body{
    background-color: #20252d;
    margin: auto;
	  padding: 0;
    text-align: center;
}

.bodySize{
  width: 720px;
	margin: auto;
	padding: 0;
}

.bodyOverlay{
    background-image: url('../assets/tvoverlay.png');
    background-size: 100% 100%; 
    background-repeat: no-repeat;
    background-attachment: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: fixed;
    margin: 0;
    z-index: 3;
    pointer-events: none;
} 

.header {
    display: block;
    margin: auto;
    padding-top: 35px;
    height: 100%;
    width: 100%;
}

.mainDiv{
    width: 720px;
    height: fit-content;
    padding-left: 5px;
    padding-right: 5px;
    padding-bottom: 20px;
    margin:0 auto;
    background-color: #000010;
    border-radius: 10px;
}

h1 {
    color: #ffffff;
    text-align: center;
    padding: 10px;
    font-size: 26px;
}

p {
  color:#ffffff;
  text-align: center;
}

a img{
  transition: ease-in 0.3;
}

a img:hover {
  transition: ease-in 0.3s;
  filter: invert(1);
}

.source-code-pro {
  font-family: "Source Code Pro", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.tvEffect {
    top:0;
    left:0;
    position: fixed;
    width:200%;
    opacity:17%;
    height:200%;
    background-repeat:repeat;
    background-position-y:2px;
    animation: tvEffect-move 0.5s linear 0s forwards infinite;
    background-image:url("../assets/tveffect.png");
    pointer-events:none;
    z-index: 1;
}

@keyframes tvEffect-move {
    0% {
      background-position-y: 1.2px
    }
    to {
      background-position-y:10px
    }
  }