body {
    margin: 20px;

    background-color: black;
    color: white;
    border: solid 1px transparent;

    width: auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    
    font-family: Arial, Helvetica, sans-serif;
}

div:not(.blue){
    border: solid 1px transparent;
}

.name {
    font-size: 6.8em;
    line-height: 90%;
    letter-spacing: -0.01em;
}

.title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.event {
    z-index: 3;

    font-size: 6.8em;
    line-height: 200%;
    letter-spacing: -0.01em;

    vertical-align: middle;
}

.blue {
    display: block;
    position: fixed;
    background-color: blue;
    z-index: 5;
    height: 300px;
    width: 400px;
    transform: translate(-50%, -50%);
    left: calc((100%-300px)/2);
    top: calc((100%-150px)/2)
}

.blue:hover {
    z-index: 1;
    transition: 500ms;
}

.date {
    font-size: 6.8em;
    line-height: 90%;
    letter-spacing: -0.01em;

}

.footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;

    font-size: 1em;
}