body{
    margin: 0;
    background-color: black ;
}

.Prison-Doors{
    padding-left: 8%;
    padding-bottom: 3%;
    padding-right: 8%;
    padding-top: 18%;
    background-image: url(Horror_Wall.png);
    background-size: 100% 99%;
    background-repeat: no-repeat; /*backgroundimage wiederholt sich nicht*/
    display: flex;
    flex-direction: row; /*Die Flexbox steht Horizontal*/
    justify-content: center; /*Der Inhalt der Flexbox steht in der Mitte*/
    justify-content: space-between; /*Es sind Abstände zwischen den Flexbox-Gegenständen*/

}

.Door {
    position: relative;
    width: 20%; /*nimmt 20% des divs Prison-Doors ein*/
}

.Door img {
    width: 100%;  /*Sorgt dafür das die Tür immer die proportionalle Höhe hat*/
    height: auto; 
    transition: opacity 0.7s; /*Tür-Animation geschmeidig*/
}

.Open-Door {
    position: absolute;
    left: 0;  /*Sorgt dafür das die offene Tür auf der Geschlossenen liegt*/
    opacity: 0; /*Tür wird unsichtbar*/
}

.Door:hover .Open-Door {
    opacity: 1; /*Tür wird sichbar*/
}

.Card-Text{
    color: white;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 3rem;
    margin-top: 250px;
    margin-left: 20%;
    margin-right: 20%;
}

.SCP-Card{
    display: block;
    padding: 0;
    border: 0;
    opacity: 0.7;
    margin: 100px auto 100px auto;
    width: 70vw;

    img {
        width: 100%;
    }
}

.SCP-Card:hover{
    opacity: 1;
}

.Impressum{
    font-size: 1.3rem;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: white;
    margin-left: 40px;
    margin-bottom: 20px;
    p{
    opacity: 0.4;
    }
    a{
    opacity: 0.4;
    text-decoration: none;
    color: white;
    text-decoration: underline;
    }
    a:hover{
        opacity: 0.8;
    }
}

/*removebg*/

@media screen and (max-width: 1280px){
    .Prison-Doors {
        flex-direction: column;
        background-image: none;
        gap: 2rem;

        .Door {
            width: 80%;
            margin: 0 auto;
        }
    }

    .Prison-Doors img{
            margin-top: 20px;
            flex-direction: column;
            margin: 0;

    }

}






