html, body 
{
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
}

iframe 
{
    width: 100%;
    height: 100%;
    border: none;
}

.logos
{
    height: 10%;
    position: absolute;
    left: 0px;
    width: 100%;
    bottom: 0px;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    /*pointer-events: none;*/
}

.logos img
{
    max-height: 120px;
}

.info-box
{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    display:none;
    flex-direction: row;
    flex-wrap: wrap;
}

.infoInner
{
    padding: 20px;
    background-color: rgba(0,0,0,0.9);
    width: 90%;
    height: 90%;
    border-radius: 20px;
    overflow-y: scroll;
}

.infoInner h1
{
    color: white;
    text-align: center;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 24px;
}

.infoInner p, .infoInner
{
    color: white;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 18px;
}

.infoInner a
{
    color: white;
}

.close
{
    background-image: url('./icons/close.svg');
    width: 8%;
    height: 8%;
    position: absolute;
    top: 5%;
    right: 5%;
    cursor: pointer;
    background-size: contain;
    background-repeat: no-repeat;
    max-width: 40px;
}

.iconTray
{
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 10%;
    right: 5%;
    width: 10%;
    height: 80%;
}

.iconTray p
{
    font-family: "Roboto Condensed", sans-serif;
    color: white;
    text-align: center;
    font-size: 60px;
    font-weight: bold;
    filter: drop-shadow(5px 5px 10px #000000);
}

.badge
{
    display: none;
}