:root{
    overflow-x: hidden;
}

body{
    margin: 0px;
}
.sectionPapyrus{
    height: 100vh;
    width: 100vw;
    background-image: url(../images/concreteWall.webp);
    background-size: cover;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.formPapyrus{
    height: 80vh;
    width: 80vw;
    background-image: url(../images/papyrus.webp);
    background-size:cover;
    background-repeat: no-repeat; 
    background-position: center;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 25px;

    label{
        font-family: Babylonica;
        font-size: 6ch;
        color: rgb(50, 1, 1);
    }

        .lyrics{
        width: 50vw;
        height: 40vh;
        margin: 0vh 25vw 10vh 25vw;
        font-family: Babylonica;
        font-size: 5ch;
        resize: none;
        background-color: rgba(50, 1, 1, 0);
        border-style:none;
        
    }
        .lyrics:focus{
            border: none;
            outline: none;
        }

        button{
            height: fit-content;
            width: fit-content;
            padding: 10px;
            justify-self: center;
            color: rgb(50, 1, 1);
            background-color: rgba(0,0,0,0);
            border-style: none;
            font-family: Babylonica;
            font-size: 5ch;
        }
}
.bloodLeft{
    width: 20vw;
    height: 100vh;
    display: grid;
    grid-template-columns: 1,1,1;
    grid-template-rows: 1,1,1;
    position: absolute;
    left: 0;
}
.bloodRight{
    width: 20vw;
    height: 100vh;
    display: grid;
    grid-template-columns: 1,1,1;
    grid-template-rows: 1,1,1;
    position: absolute;
    right: 0;
}
.blood1{
    width: auto;
    height: 10vw;
    grid-row: 3;
    grid-column: 3;
    opacity: 0;
}
.blood2{
    width: auto;
    height: 10vw;
    grid-row: 2;
    grid-column: 1;
    opacity: 0;
}
.blood3{
    width: auto;
    height: 10vw;
    grid-row: 3;
    grid-column: 3;
    opacity: 0;
}
.blood4{
    width: auto;
    height: 10vw;
    grid-row: 1;
    grid-column: 1;
    opacity: 0;
}
.floor{
    width: 100vw;
    height: auto;
    min-height: 100vh;
    background-image: url("../images/metalWall.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    align-content: flex-end;
    padding-top: 10vh;
}

.akte{
    width: 80vw;
    height: auto;
    max-width: 700px;
    background-color: white;
    padding: 10px 10px 50px 10px;
    margin: 0 auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    h1{
      color: darkred;
    }}
