body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column; /* Allows stacking of children vertically */
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #999;

}

.container {
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 2em;
    width: 90%;
    max-width: 1222px;
    margin-bottom: 20px; /* Adds space between the container and the more-info section */
    background-color: #fff;
}

h1 {
    font-size: 7vh;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

.columns {
    display: flex;
    justify-content: space-between;
}

.column {
    flex: 1;
    margin: 0 10px; /* Adds space between columns */
}

ol {
    
    padding: 0;
    margin: 0;
}

li {
    margin-bottom: 10px;
    line-height: 2em;
}

strong {
    display: block;
    font-size: 16px;
    color: #555;
}

/* Styling for the "More on the Resurrection" link */
.more-info {
    text-align: center; /* Centers the link text */
    font-size: 18px; /* Adjusts the font size */
    color: white;
}

.more-info a {
    color: #40f2e9; /* Sets the color of the link */
    text-decoration: none; /* Removes the underline from the link */
    font-weight: bold; /* Makes the link text bold */
}

.more-info a:hover {
    text-decoration: underline; /* Adds an underline on hover */
    color: #0056b3; /* Changes the color on hover */
}

@media only screen and (max-width: 1221px) {
    
    body {display: block; margin-left: -5px;}
    h1 {margin-left: -15px;}
    .columns {display: block;}
    .more-info {padding-bottom: 3em;}
}
