/* This file is for using the lh unit in the gradient */

*, *::before, *::after {
    box-sizing: border-box;
}

body {
    font-family: 'comic sans ms', cursive;
    background-color: rgb(216, 206, 185);
    background-image: linear-gradient(to bottom right, rgb(94, 34, 34), rgb(43, 17, 14));
    min-height: 100vh;
    font-size: 26px;
}

.paper {
    min-height: 100vh;
    color: rgb(13, 13, 145);
    background-color: rgb(248, 244, 237);
    background-image: repeating-linear-gradient( rgba(37, 215, 247, 0.5) 0 2px, transparent 0 1lh  );
    background-position: 0 4em;
    background-repeat: no-repeat;
    max-width: 1100px;
    margin: 2em auto;
    box-shadow: 2px 2px 12px #4e493e;

    display: grid;
    grid-template-columns: 1fr 6fr;
    align-content: start;

    & .punch-hole {
        width: 20%;
        aspect-ratio: 1 / 1;
        border-radius: 50%;
        background-color: #4C1C1B;
        box-shadow: inset #111 3px 3px 10px;
    }
    
    & .margin {
        display: grid;
        place-items: center;
        padding-bottom: 5em;
        grid-row: 1 / 100;
        border-right: solid 1px red;
    }
    
    & p:nth-child(1) {
        margin-top: 4.25em;
        color: green;
    }
    
    & .text {
        grid-column: 2 / 3;
        margin-inline: 1em;
        line-height: 1lh;
    }
    
    & .text > * {
        margin-block: 1lh;
    }
    
    & h2 {
        margin-block: .8lh;
        /* display: none; */
    }
}
