@font-face {
font-family: 'RobotoMono';
src: url('font/RobotoMono-Bold.ttf');
}

body{
padding: 0;
margin: 0;
}

html{
background-color: black;
scroll-behavior: smooth;

}
#home-nav{
text-align:center;
}
#home-nav h1{
display: inline-block;
text-align:left;   
}
h1{
text-align: left;
color:white;
font-size: 20px;
font-family: RobotoMono;
text-transform: uppercase;
letter-spacing: 4px;
-webkit-text-stroke: 1.3px white;
stroke-linejoin: round;
}

h2{
color:white;
font-family: RobotoMono;
text-transform: uppercase;
letter-spacing: 4px;
}

h3{
color:white;
font-family: RobotoMono;
text-transform: uppercase;
letter-spacing: 4px;
}

ul.no-bullets {
display: inline-block;
text-align:left;
list-style-type: none;
letter-spacing: 4px;
margin: 0;
padding: 0;
}

li{
line-height: 1.5;
}
li:nth-child(1){
line-height: 1.5;
}
li:nth-child(3){
line-height: 2.2;
}
ul{
color:white;
font-family: RobotoMono;
text-transform: uppercase;
letter-spacing: 4px;

text-decoration: none;
padding: 0;
list-style-type: none;
}

ul a{
color:white;
font-family: RobotoMono;
text-transform: uppercase;
letter-spacing: 4px;
text-decoration: none;
}
a:hover{
color:#bb2047;
}
ul p{
padding:0;
margin-top: 5px;
margin-bottom: 5px;
}

.landing-page-wrapper{
background-image: url(images/banner.jpg);
background-size: cover;
background-repeat: no-repeat;
text-align:center;
height: 100vh;
width:100%;
vertical-align:middle;
}
.landing-page-child{
display: inline-block;
text-align:left;
vertical-align: middle;
text-align:center;
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
}
#main-logo-img{
height:auto;
width:200px;
}

#logo-bar-img{
height:auto;
width:400px;   
}
#logo-bar-wrapper{
position: absolute;
left:50%;
transform: translateX(-50%);
bottom: 20px;
}
.second-screen{
background-color: black;
width: 100%;
height:100vh;
padding: 0;
}
.rotate {
animation: rotation 20s infinite linear;
}

@keyframes rotation {
from {
transform: rotate(0deg);
}
to {
transform: rotate(359deg);
}
}
#circle-text{
position: absolute;
top:20px;
right:20px;
}

.wrapper {
padding-top: 50px;
padding-bottom: 50px;
overflow: hidden;
width:100%;
}

.wrapper a{
height:100%;
width:100%;
}

.sliding-background-1:hover{
opacity: 0.8;
}
.sliding-background-2:hover{
opacity: 0.8;
}
.sliding-background-3:hover{
opacity: 0.8;
}

.sliding-background-1 {
margin-top:10px;
margin-bottom:10px;
background: url("images/Red%20Banner_Portfolio.jpg")
repeat-x;
height: 34px;
width: 5076px;
animation: slide 20s linear infinite;
}
.sliding-background-2 {
margin-top:10px;
margin-bottom:10px;
background: url("images/Red%20Banner_Merch.jpg")
repeat-x;
height: 34px;
width: 5076px;
animation: slide 30s linear infinite;
}
.sliding-background-3 {
margin-top:10px;
margin-bottom:10px;
background: url("images/Red%20Banner_Contact.jpg")
repeat-x;
height: 34px;
width: 5076px;
animation: slide 25s linear infinite;
}

@keyframes slide {
0% {
transform: translate3d(0, 0, 0);
}
100% {
transform: translate3d(-1692px, 0, 0);
}