body {
    background-color: #000000;
    color: #FFFFFF;
    font-family: "Trebuchet M";
  }


   /* unvisited link, visited link, mouse over link, selected link */
  a:link, a:visited, a:hover, a:active {
    text-decoration: none;
  }

  /* prevent tect selection*/
  .prevent-select {
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
  }

/*
  .tao-left, .tao-right {
    writing-mode: vertical-lr;
    display: block;
    opacity: 0.80;
    height: auto;
    width: auto;
    margin: 5px;
    font-size: 32px;
    position: absolute;
    text-orientation: upright;
    z-index:-1;
    top: 0;
  }
  
*/

  .tao-left, .tao-right {
    display:block;
    position: absolute;
    top:70px;
    font-size: 84px;
    margin-bottom: 20px;
    opacity: 0.8;
    
  }

  .tao-left {
    left:80px;
  }

  .tao-right {
    right:80px;  
  }
  
  iframe {
    width:80%;
    height: 768px;
    margin: 10px;
    background: #000000;
    background-clip: border-box;  
    border: 5px double #FFFFFF;
    border-radius: 7px;
  }
  
  .content {
    margin: 200px 25px 100px;  
  }
  
.address {
    position: fixed;
    bottom: 0;
    margin: 10px auto;
    left: 50%;
    transform: translateX(-50%);
  }

.address small {
    font-size: 15px;
  }



/* Animation */

  .tao-parent:hover, .tao {
    display: block;

    -webkit-animation: fadeInFromNone 1s ease-out;
    -moz-animation: fadeInFromNone 1s ease-out;
    -o-animation: fadeInFromNone 1s ease-out;
    animation: fadeInFromNone 1s ease-out;
}

@-webkit-keyframes fadeInFromNone {
    0% {
        display: block;
        opacity: .6;
    }

    1% {
        display: block;
        opacity: .4;
    }

    80% {
        display: block;
        opacity: 1;
    }
}

@-moz-keyframes fadeInFromNone {
    0% {
        display: block;
        opacity: .6;
    }

    1% {
        display: block;
        opacity: .4;
    }

    80% {
        display: block;
        opacity: 1;
    }
}

@-o-keyframes fadeInFromNone {
    0% {
        display: block;
        opacity: .6;
    }

    1% {
        display: block;
        opacity: .4;
    }

    80% {
        display: block;
        opacity: 1;
    }
}

@keyframes fadeInFromNone {
    0% {
        display: block;
        opacity: .6;
    }

    1% {
        display: block;
        opacity: .4;
    }

    80% {
        display: block;
        opacity: 1;
    }
}