html, body {
    margin: 0;
    padding: 0;

    width: 100%;
    height: 100%;

    font-family: Arial, Helvetica, sans-serif;
}

/* Body should center the main block and let events expand below */
body {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Main centered content (logo + button + title) */
.content {
    flex: 1; /* occupies available space so it can center vertically */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* vertical centering */
    width: 100%;
    text-align: center;
}

/* Events container BELOW the main content */
.events {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* Each event box */
.event {
    max-width: 350px;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
}

.event h3 {
    margin: 0;
    font-size: 1.2rem;
}

.event .date {
    color: #666;
    font-size: 0.9rem;
}

/* Divider line */
.divider {
    width: 350px;
    border: 0;
    height: 1px;
    background-image: linear-gradient(
        to right,
        rgba(72, 76, 122, 0),
        rgba(72, 76, 122, 0.75),
        rgba(72, 76, 122, 0)
    );
    margin: 20px 0;
}

/* Links */
a {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

/* Styled button */
a.forward-button {
    display: inline-block;
    outline: 0;
    border: 0;
    cursor: pointer;
    font-weight: 600;
    color: rgb(72, 76, 122);
    height: 38px;
    padding: 20px 24px 0px 24px;
    border-radius: 50px;
    background-image: linear-gradient(180deg,#fff,#f5f5fa);
    box-shadow: 0 4px 11px 0 rgb(37 44 97 / 15%), 
                0 1px 3px 0 rgb(93 100 148 / 20%);
    transition: all .2s ease-out;
}

a.forward-button:hover {
    box-shadow: 0 8px 22px 0 rgb(37 44 97 / 15%), 
                0 4px 6px 0 rgb(93 100 148 / 20%);
}