body
{
    /*background-color: black;*/
    background: url("/static/media/images/bg.jpg") no-repeat center center fixed;;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    color: whitesmoke;
    font-family: "Reggae One";
    margin: 0;
    
}

#bg-video {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
}

.wrapper {
    display: grid;
    grid-template-columns: minmax(5%, 12%) 1fr minmax(5%, 12%);
    grid-template-rows: 1fr;
    height: 100%;
    color: black;
}

.wrapper > *:first-child {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 3em;
    width: 100%;
}

.text-center{
    text-align: center;
}

h2 {
     font-size: 1.5em;
     margin-bottom: 0.5em;
 }

 p {
     font-size: 1.2em;
     line-height: 1.6;
 }