body {
    background: url(Images/Backgrounds/creditsbackground.jpg);
    color: white;
    background-position: center;
    background-size: cover;
}

#killyourself {
    position: fixed;
    background: rgba(0, 0, 0, 0.06);
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh; 
    z-index: -10;
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px)
}

#container {
    border-radius: 9px;
    padding: 13px;
    background: #262626;
    max-width: 800px;
    outline: dashed 2px grey;
    outline-offset: -9px;
}

#evilcontainer {
    padding: 4px;
    border-radius: 12px;
    width: fit-content;
    margin: auto;
    margin-top: 10px;
    border: 20px solid;
    border-image: url(Images/Borders/miserabledolly_doily2.png) 20 fill round;
}

a {
    color: lightgrey;
    display: block;
    margin: 5px;
    padding: 4px;
    border: solid 1px grey;
    background: linear-gradient(to right ,#262626 50%, grey)
}

a::before {
    content: "⟣ "
}

a::after {
    content: " ⟢ "
}

a:hover {
    background: linear-gradient(to right ,#353535 50%, lightgrey);
    color: white;
    border-color: lightgrey;
    font-style: italic
}

section {
    
}

h1, h2 {
    margin: 0;
    font-family: 'Aldrich', Tahoma, sans-serif;
    font-weight: 100;
    text-align: center;
}

h1::before, h1::after {
    content: " ⯎ "
}

h2 {
    text-align: center;
    margin: 5px;
    border: solid 1px gray; 
    padding: 4px;
    color: lightgrey
}

header {
    grid-column: 1 / span 3;
    text-decoration-line: underline;
    margin-top: 10px;
}

article {
    grid-row: 2;
    grid-column: 1 / span 3;
    padding: 5px;
}

footer {
    grid-column: 1 / span 3
}

footer a {
    background:  linear-gradient(to right ,#353535 ,gray, gray, #353535);
    color: white;
    border-color: lightgrey;
    font-weight: 700;
    text-align: center;
    transition: 0.3s ease-out;
    margin-top: 20px;
}

footer a:hover {
    letter-spacing: 2px;
    background: linear-gradient(to right ,grey ,#353535, #353535,grey);
}

@media only screen and (max-width: 700px) {
    #evilcontainer {
        margin: -8px
    }
}