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

body{
    background-color: black;
    color: white;
    text-align: center;
    font-family: Uni0564;
}

h1,h2,h3{
    color: rgb(255,212,40);
    text-shadow: 2px 2px #f23131;
    margin: 5px;
}

h1{
    width: 100%;
}

h5{
    padding-left: 0;
    padding-right: 0;
}

@media(min-width:1000px){
    h5{
        padding-left: 30%;
        padding-right: 30%;
    }
}

hr{
    background-color: red;
}

.alpha-bg-1{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/bg-1.jpg');
    background-size: cover;
    z-index: -2;
}

@keyframes fire{
    0%   {background-color: rgba(0,0,0,0.8);}
    50%  {background-color: rgba(0,0,0,0.5);}
    100% {background-color: rgba(0,0,0,0.8);}
}

.overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    animation: fire 2s infinite;
    z-index: -1;
}

.footer{
    position: relative;
    bottom: 5px;
    width: 100%;
    text-align: center;
}

.fb-like{
    margin-top: 10px;
    width: 100%;
}

.fb-comments{
    background-color: rgba(0,0,0,0.5);
    box-shadow: 0px 0px 10px rgba(0,0,0,0.5);
    margin-top: 10px;
}

#pop_up_rick{
    position: fixed;
    top:0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    text-align: center;
    background-color: rgba(0,0,0,0.6);
}

#pop_up_rick iframe{
    margin-top: 50px;
}

img{
    width: 80%;
}

@media (min-width:600px){
    img{
        width: 350px;
    }
}

.black-bottom{
    position: absolute;
    width: 100%;
    height: 200px;
    bottom: 0;
    background: -webkit-linear-gradient(transparent, black);
    background: -o-linear-gradient(transparent, black);
    background: -moz-linear-gradient(transparent, black); 
    background: linear-gradient(transparent, black);
    z-index: -1;
}

.code h1:hover{
    cursor: copy;
}

.code h4{
    height: 0;
    transition: all 0.5s ease;
    opacity: 0;
}

.code:hover h4{
    height: 10px;
    opacity: 1;
}

.button{
    position: relative;
    display: inline-block;
    padding: 20px;
    padding-left: 30px;
    padding-right: 30px;
    margin: 20px;
    color: rgb(255,212,40);
    background-color: #f23131;
    transition: all 0.5s ease;
}

.button:hover{
    background-color: darkgreen;
    color: #f23131;
    background-color: rgb(255,212,40);
}

a{
    text-decoration: none;
}