/**********************************
Reset
**********************************/
html{
    box-sizing: border-box;
}

*,
*:before,
*:after{
    box-sizing: inherit;
}

*{
    margin: 0px; 
    padding: 0px;
}

/**********************************
Base Styles
**********************************/
@font-face {
    font-famliy: 'Roboto Mono';
    src: url(RobotoMono-Regular.woff) format('woff');
    src: url(RobotoMono-Regular.woff2) format('woff2');
}

body{
    font-family:'Roboto Mono', monospace;
    font-size: 100%;
    background-color: #000;
}

img{
    border:none;
    max-width:100%;
    height:auto;
}

p {
    margin: 20px 0;
}

.container{
    width:100%;
    max-width: 1200px;
    height: 100vh;
    margin: auto;
}

.tate_section {
    margin: 0 auto;
    color: #fff;
    position: relative;
}

svg text { 
    fill: #fff;
    width: 100%; 
}

svg.clock text {
    fill: #ff0000;
}

/*Shared*/
.text_display {
    font-size: 2.5vw;
    line-height: 1.5;
    color: #fff;
    height: 90vh;
    text-align: center;
    position: relative;
}

.text_display .display_content {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: 100%;
    padding: 10px;
    background-color: #000000;
    opacity: .6;
    padding-left: 10px;  
    padding-top: 10px; 
    margin-top: 2%;
}

.buttons {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-evenly;
    align-content: stretch;
    border-top: 10px solid #000;
}

.buttons a {
    background: #f7f7f7;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#eeeeee+0,cccccc+100;Gren+3D */
    background: #eeeeee; /* Old browsers */
    background: -moz-linear-gradient(top,  #eeeeee 0%, #cccccc 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  #eeeeee 0%,#cccccc 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  #eeeeee 0%,#cccccc 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#cccccc',GradientType=0 ); /* IE6-9 */
    color: #000;
    text-shadow: 0px 1px 1px #fff; 
    text-decoration: none;
    font-weight: 900;
    font-size: 3.5vw;
    flex-grow: 1;
    border-right: 1px solid #bababa;
    padding: 0.25em;
    /*margin: 0.25em;
    border-radius: 10px;
    display: inline-block;*/
}

.buttons a:hover {
    background: #bababa;
}

/*Text Display*/
.text_display_clock {
    text-align: center;
    font-size: 13vw;
    line-height: 1.2;
    color: #ff0000;
    font-weight: 600;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 98%;
    padding: 1%;
}

/*Text Display w/Buttons*/

/*Text Display w/Avatar, Text, Buttons*/
.avatar_text {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
}

.avatar_text .bruce_test {
    background-color: #000000;
    opacity: .6;
    padding-left: 10px;   
}

.avatar_text .avatar, 
.avatar_text .image_display {
    padding: 1%;
    width: 50%;
}

.avatar_text .text_display {
    font-size: 1.75vw;
    width: 50%;
}

.avatar_text .avatar img, 
.avatar_text .image_display img {
    display: block;
    margin: auto;
    height: 100%;
    width: 100%;
}

.avatar_text .image_display img {
    overflow: hidden;
}

.avatar_text .avatar .text_display {
    font-size: 1.3vw;
}

/*Full Frame*/
.full_frame img {
    width: 100%;
    height: auto;
    overflow: hidden;
    display: block;
    margin: 10px auto;
}

.image_logo {
    margin-left: 50%;
    margin-right: auto;
    position: absolute;
    top: 2%;
   /* -ms-transform: translateY(-50%); */
    transform: translateY(-25%);
    transform: translateX(-25%);
}



/**********************************
Responsive CSS
**********************************/

@media screen and (max-width: 1920px) {
    .container {
        max-width: 1920px;
    }
}

@media screen and (max-width: 1280px) {


}

@media screen and (max-width: 980px) {

}

@media screen and (max-width: 640px) {

}

@media screen and (max-width: 480px) {

}
