body {
    background-color: #30262c; 
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    /* align-items: center; */
    height: 100vh;
    margin: 0;
    /* text-align: center; */
    position: relative;
    overflow: hidden;
}
h1 {
    font-size: 50pt;
    /* font-weight: bold; */
    font-family: Georgia, serif;
    /* text-transform: uppercase; */
    position: absolute;
    top: 5%;
    right: 5%;
    animation: pulse-shadow 2s infinite alternate;
    z-index: 100;
    color: rgb(255, 251, 230);
}

@keyframes pulse-shadow {
    0% { text-shadow: 4px 4px 20px rgba(0, 0, 0, 0.2); }
    100% { text-shadow: 6px 6px 25px rgba(0, 0, 0, 0.4); }
}


footer {
    position: absolute;
    bottom: 10px;
    left: 10px;
    font-size: 0.9rem;
    z-index: 50;
}
.shadow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* pointer-events: none; */
    overflow: hidden;
}
.shadow {
    position: absolute;
    width: 180mm;
    height: 250mm;
    background: rgb(255, 251, 230);
    transform: rotate(-10deg);
    animation: float-shadow 5s infinite alternate ease-in-out;
    box-shadow: 10px 5px 30px rgb(61, 61, 61);
}
.shadow:hover {
    animation: none;
    top: 7%;
    transform: translateY(-70px) rotate(-8deg);
    box-shadow: 0px 5px 50px rgb(61, 61, 61);
}
.shadow:nth-child(1) {
    top: 15%;
    left: 15%;
    animation-duration: 6s;
    z-index: 1;
    
}

.shadow:nth-child(2) {
    top: 21%;
    left: 20%;
    animation-duration: 7s;
    z-index: 2;
}
.shadow:nth-child(3) {
    top: 31%;
    left: 25%;
    animation-duration: 5s;
    z-index: 3;
}
.shadow:nth-child(4) {
    top: 42%;
    left: 30%;
    animation-duration: 8s;
    z-index: 4;
}
.shadow:nth-child(5) {
    top: 51%;
    left: 35%;
    animation-duration: 6.5s;
    z-index: 5;
}
@keyframes float-shadow {
    0% { 
        transform: rotate(-10deg) translateY(0px); 
        box-shadow: 20px 10px 30px rgb(61, 61, 61);    
    }
    100% { 
        transform: rotate(-9deg) translateY(1px); 
        box-shadow: 10px 5px 30px rgb(61, 61, 61);
    }
}


a{
    text-decoration: none;
    color: rgb(31, 31, 31);
}

.links{
    display: flex;
    justify-content:space-between;
    width: 140mm;
    text-align: left;
    margin-left: 2cm;
    margin-right: 2cm;
    margin-top: 1.5cm;
    font-family: 'Courier New', monospace;
    font-size: 14pt;
    
    color: rgb(31, 31, 31);
}

.pagecontent{
    text-align: left;
    padding-left: 2cm;
    padding-right: 2cm;
    font-family: 'Courier New', monospace;
    font-size: 12pt;
    
    color: rgb(31, 31, 31);
}

.pagescroll{
    position: inherit;
    height: 120mm;
    scroll-behavior: auto;
    overflow-y: scroll;
}

hr {
    display: block;
    height: 2px;
    border: 0;
    border-top: 1px solid rgb(31, 31, 31);
    margin-left: 2cm;
    margin-right: 2cm;
}