* { margin: 0; padding: 0; }

html, body { height: 100%; }
body { 
    background-image: url('/img/df-bg.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: #222;
    position:relative;
    color: #7fffd4;
    font-family: Arial, Helvetica, sans-serif;
}
h1 { 
    font-weight: 500;
    font-size: 1em;
    margin-top: 30px;
}
h3 { font-weight: 500; }
a { color: #7fffd4; text-decoration: none; }
p { margin: 20px 0; }

#background {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: rgba(0,0,0,0.4);
}

#main {
    width: 100%;
    height: 100%;
}
#main .middle { 
    height: 100%;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}
#main .center { 
    padding-top: 1em;
    text-align: center;
}
img.logo { 
    max-width: 300px;
    width: 65%;
    vertical-align: middle;
    border-radius: 5px;
    box-shadow: 0px 0px 10px 5px #252525;
}
.social {
    font-size: 3em;
    text-align: right;
    position: absolute;
    bottom: 20px;
    right: 20px;
}
.fb-page {
    display: block !important;
    margin-top: 30px;
}
.embedded-video-16-9 {
    margin-top: 30px;
    width:  90vw;
    height: 50.625vw; /* 90*9/16 */
    margin-left: 5vw;
    margin-right: 5vw;
}

.content {
    margin: 50px auto 0;
    width: 280px;
}

.content .image {
    width: 280px;
    height: 200px;
    position: relative;
    background-color: rgba(127, 255, 212, 0.9);
    border-radius: 15px;
    color: #222;
    font-weight: 400;
    padding-bottom: 10px;
    display: table-cell;
    vertical-align: bottom;
    text-align: center;
}

.content .image .logo {
    width: 160px;
    height: 160px;
    border-radius: 100%;
    top: -30px;
    left: 60px;
    box-shadow: 0px 0px 25px #000;
    position: absolute;
    background-image: url("/img/logo.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    transition: all 2.0s ease-in-out;
}

.content .image .logo:hover {
    transform: rotate(360deg);
}

.content a {
    display: block;
}

.row {
    width: 100%;
    border-radius: 15px;
    background-color: #444;
    margin: 15px auto;
    display: table;
}
.row:hover {
    background-color: #222;
}

.row div {
    display: table-cell;
    padding: 10px;
    vertical-align: middle;
}

.row div.link {
    padding-left: 20px;
}

.icon {
    background-color: #222;
    border-radius: 13px 0 0 13px;
    width: 40px;
    height: 40px;
    text-align: center;
}

.icon i {
    font-size: 30px;
}

@media (min-width: 893px) {
  .embedded-video-16-9 {
    width: 45vw;
    height: 25.3125vw; /* 45*9/16 */
    margin-left: 2vw;
    margin-right: 2vw
  }
}