*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Times New Roman', georgia, arial, sans-serif;
}

body {
  margin: 0;
  
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url(/Assets/slayerbg.png) no-repeat center;
  background-size: cover;
  filter: grayscale(100%);
  z-index: -1;
}

.stars{
    height: 920px;
    width: 100%;
    position: relative;
    filter: grayscale(80%);
    opacity: 0.9;
}

.gradient{
    height: 900px;
    width: 750px;
    background-image: linear-gradient(to left, black 20%, transparent);
    position: absolute;   
}

img {
    height: 100%;
    width: auto;
    object-fit: cover;
    display: block;
}


.error-page {
    position: absolute;
    top: 10%;
    left: 17%;
    right: 17%;
    bottom: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
}

.error-page .content {
    max-width: 600px;
    text-align: center;
}

.content h1 {
    color: #dadada;
    line-height: 1em;
    font: 100px 'Jacquard 24', georgia, aria;
    margin-bottom: 20px;
    text-shadow: #c5c5c5 0px 0px 60px;
    text-align: center;
   
}

.content h4 {
    font-size: 25px;
    color: #dadada;
    margin-bottom: 20px;
    text-transform: uppercase;
    max-width: 600px;
    font: 30px 'Cormorant Garamond', georgia, arial;
    font-weight: bold;
}

.content p {
    font-size: 20px;
    color: #dadada;
    margin-bottom: 30px;
}

.content .btn{
    margin: 25px 0;
    display: inline-flex;    
    
}

.content .btn a{
    font: 30px 'Jacquard 12', georgia, arial;
    color: #f1f0df;
    display: inline-block;
    margin: 0 10px;
    text-decoration: solid underline #ded5bd;
    padding: 10px 25px;
    text-transform: lowercase;
    transition: all 0.3s ease;
}

.content .btn a:hover{
    color:#ded5bd;
    text-decoration: solid underline transparent;
    text-shadow: #ded5bd 0px -4px 20px;

}


#footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50px;
    text-align: center;
    }

.grad {
    height: 965px;
    background-image: linear-gradient(to bottom, rgba(255,0,0,0), rgb(5, 5, 5));
}