.container {
    margin-left: auto;
    margin-right: auto;
    padding: 10px;
    max-width: 600px;
    justify-content: center;
    word-wrap: break-word;
}

body {
    background-color: white;
}

.content {
    font-family: 'Cabin'; 
}


.subtitle {
    font-size: 20px;
    padding-bottom: 5px !important;
    font-weight:lighter !important; 
}

.paragraph {
    font-size: 18px;
    padding-bottom: 20px !important;
}

.underline {
    text-decoration: underline;
}

/*
    Creates a wrapper for the linked video and 
    adjusts scales it according to the screen size
*/
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}