.row_custom {
    display: flex;
    flex-direction:row;
    flex-wrap: nowrap;
    margin-bottom: 10px;
    justify-content: space-evenly;
}
#welcome {
    background-color: #00538e; 
    height: 70px;
    color: white;
}
.row h1 {
    font-family: roboto;
    font-size: 2rem;
    color:#00538e; 
    font-weight: 400;
}
.row h2 {
    font-size: 1.5rem;
    font-weight: 400;
}
.row .myvideometer-welcome {
    font-size: 1rem;
}
.column {
    flex: 1;
    border: solid 2px #00538e;
    border-radius: 4px;
    padding: 20px; 
    text-align: center;
    margin:0.5rem; 
}

.column:hover {
    border:solid 2px #09afef;
} 

.column h3 {
    font-family: roboto;
    font-size: 12pt; 
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.column p {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; 
    font-size: 11pt; 
    letter-spacing: 0.25px;
}

.row a {
    text-decoration: none;
    color: #2a2b2e; 
}
.row a:hover {
    color:#09afef;
    font-weight: 600;
    transition: all 600ms ease 0s; 
}
.column p:hover {
    /*font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; */
    /*font-size: 11pt; */
    /*letter-spacing: 0.25px;*/
    color:#2a2b2e;
}

.popup-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
}

.question-mark {
    font-size: 20px;
    cursor: pointer;
}

.telemetry{
    margin-top: 2em;
    margin-bottom: 2em;
    display: flex;
    flex-direction: column;
}

.telemetry .content{
    margin-top: 0.25em;
    display: flex;
    flex-direction: row;
}

.telemetry .text{
    flex-basis: 50%;
}

.grafana-container{
    height: 70vh;
    width: 80vw;
    
}

.grafana-selector-container{
    display: flex;
    flex-direction: row;
    width: 80vw;
}

.grafana-selector{
    
}

.print-container{
    text-align: end;
    flex-grow: 1;
    overflow: hidden;
}



.hidden{
    display: none;
}

.invisible{
    visibility: hidden;
}

@media only screen and (max-width: 700px) {
    .row_custom{
      flex-direction: column;
    }
    /*
    //Make smaller for phone?
    .column{
        padding-bottom:0px;
    }
    .column a{
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-evenly;
    }
    
    */
  }

.EasterEgg:active {
    animation: rainbow 2.5s linear;
    animation-iteration-count: infinite;    
}

@keyframes rainbow{
    100%,0%{
        color: rgb(255,0,0);
    }
    8%{
        color: rgb(255,127,0);
    }
    16%{
        color: rgb(255,255,0);
    }
    25%{
        color: rgb(127,255,0);
    }
    33%{
        color: rgb(0,255,0);
    }
    41%{
        color: rgb(0,255,127);
    }
    50%{
        color: rgb(0,255,255);
    }
    58%{
        color: rgb(0,127,255);
    }
    66%{
        color: rgb(0,0,255);
    }
    75%{
        color: rgb(127,0,255);
    }
    83%{
        color: rgb(255,0,255);
    }
    91%{
        color: rgb(255,0,127);
    }
}