* { 
        overflow: hidden;
        overflow-x: hidden;
        scrollbar-width: none;
}

html, body, iframe {
    margin: 0px;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    border: none;
}

body {
    background-size: 100%;
}

.topBar-300 {
    height: 10%;
    min-height: 100px;
    width: 100%;
    display: flex;
    flex-direction: row ;
    background-image: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.05));

}

.topLogo {
    height: 100%;
    width: 25%;
    margin: 10px 20px 10px 20px;
}

.wallFeed {
    width: 100%;
    height: 99.9%;
    margin: 10px 0px;
    flex-direction: row;
}

.yamFeed {
    height: 100%;
    width: 25%;
    overflow: hidden;
    float: right;
    opacity: 90%;
    margin: 0 10px;
    border-radius: 15px;
}

.embYamFeed {
    width: 100%;
    height: 100%;
    overflow: hidden;
    float: right;
    opacity: 90%;
    margin: 0;
    padding: 0;
    border-radius: 15px;
}

.contentFeed {
    width: 97%;
    flex-direction: column;
    margin-left: 1.2%;
    margin-right: 1.2%;
    opacity: 90%;
}

.twitFeed {
    height: 20%;
    width: 100%;
    align-items: center;
}

.localWeather {
    width: 300px;
}

.subName-h1 {
    color: white;
    background: rgba(17,16,15,1);
    margin: 0;
    padding-top: 20px;
    text-align: center;
}

.widgetDateTime {
    color: white;
    width: 50%;
    height: 100%;
    font-size: 30px;
    text-align: center;
    line-height: 100px;
    transition: 0.5s;
    background-size: 200% auto;
}

.logoImg {
    height: 80%;
}

#subLogo {
    float: right;
}

#yammerRotate {
    animation-name: myfirst;
    /* animation-duration: 20s; */
    animation-timing-function: linear;
    /* animation-delay: 0s; */
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-play-state: running;
  }
  
  @keyframes myfirst {
    0%    {opacity: 0;}
    10%   {opacity: 1;}
    90%   {opacity: 1;}
    100%  {opacity: 0;}
  }