@import url('https://fonts.googleapis.com/css2?family=Almendra:ital,wght@0,400;0,700;1,400;1,700&display=swap');
body {
    background-color: #1a1a1a;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    
    font-family: 'Almendra', serif;

    font-size: 18px;
    line-height: 1.6;

    color: #2c1a0e;

    text-shadow: 1px 1px 1px rgba(0,0,0,0.2);
}

.parchment-container {
    background-image: url('../Images/paper.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    width: 600px;
    min-height: 800px;
    
    position: relative;
    
    padding: 80px 60px 140px 60px;
    box-sizing: border-box;
    
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.8);
    border-radius: 5px; 

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

h1 {
    font-size: 2.5em;
    margin-top: 0;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 2px solid #2c1a0e;
    padding-bottom: 10px;
}

p {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Signature area  */
.signature-area {
  
display: grid;
grid-template-columns: repeat(5, 1fr);
grid-template-rows: repeat(3, 1fr);
grid-column-gap: 0px;
grid-row-gap: 0px;


}

.signature-text {
    grid-area: 1 / 1 / 3 / 4; 
}

.wax-seal {
     grid-area: 1 / 4 / 3 / 6;
    width : 60%;
    align-items: center
}
#entry_button{
    grid-area: 3 / 2 / 4 / 5;
    margin : 20px
}