body {
    font-family: "helvetica", sans-serif;
    text-align: center;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

.columns {
    display: flex;
    flex: 1 1 auto;
    align-content: stretch;
}

.col1 {
    width: 400px;
}

.col2 {
    flex: 1;
}

.paused {
    visibility: hidden;
}

.metric {
    display: inline-block;
    width: 40%;
    aspect-ratio: 3 / 2;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 5px;
    margin: 2%;
}

.metricTitle {
    font-size: 12pt;
    display: block;
    margin: 5%;
}
.metricValue {
    font-size: 24pt;
    font-weight: bold;
    display: block;
}

#remview {
    column-count: 3;
    column-gap: 5px;
    margin: 0 10px 20px 10px;
}

.panel {
    background-color: #333;
    height: 600px;
    overflow: hidden;
}

#cameraButtons input {
    display: inline-block;
    height: 50px;
    width: 50px;
    border-radius: 10px;    
}

.enabled {
    background-color: green;
}

.disabled {
    background-color: red;
}

#localVid {
    height: 225px;
    width: 300px;
    display: inline-block;
    border: 1px solid #666;
}

textarea {
    width: 90%;
    height: 150px;
}

#dataSend {
    width: 78%;
}

#forthIn {
    width: 78%;
}

#remColBar {
    margin-bottom: 10px;
}

#forthBar {
    margin-bottom: 10px;
}

.container {
    margin: 0 auto;
    padding: 10px;
}
.device-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #ddd;
    padding: 15px;
    margin-top: 20px;
    background-color: #fff;
}
.device-info img {
    max-width: 300px;
    height: auto;
}
.device-description {
    flex: 1;
    padding: 0 20px;
}
.device-description h2 {
    font-size: 24px;
    margin-bottom: 10px;
}
.device-description p {
    font-size: 16px;
    line-height: 1.6;
}
.inspirational-images {
    margin-top: 30px;
    text-align: center;
}
.image-gallery img {
    max-width: 100%;
    height: auto;
    margin: 10px;
}
.testimonial-section {
    margin-top: 30px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 5px;
}
.testimonial {
    margin: 20px 0;
    padding: 20px;
    border: 1px solid #ddd;
    background-color: #fff;
    text-align: left;
}
.testimonial img {
    height: 150px;
    width: 150px;
    border-radius: 50%;
    object-fit: cover;
    float: left;
    margin-right: 40px;
}
.testimonial-content {
    margin-left: 10px;
}
.testimonial-author {
    font-weight: bold;
    font-size: 18px;
}
.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
}

#header {
    background-color: #333;
    color: #fff;
    text-align: center;
    position: fixed;
    width: 100%;
    height: 100px;
    overflow: hidden;
}

#footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 50px;
    overflow: hidden;
}

.foot a {
    color: white;
    font-weight: bold;
    text-transform: uppercase;
}

#content {
    padding-top: 100px;
    padding-bottom: 50px;
}

.commander {
    border: 1px solid #333;
    display: inline-block;
    width: 300px;
    margin: 10px 0;
}

.commandHead {
    background-color: #666;
    color: #fff;
    font-weight: bold;
    text-align: left;
    padding: 5px;
    margin-bottom: 10px;
}

#logo {
    display: block;
    background-image: url('/static/img/logo_white.png');
    height: 100px;
    width: 200px;
    background-size: 200px 100px;
    margin-left: 50px;
}

video {
    width: 100%;
}

.rsocial {
    display: inline-block;
    background-size: 38px 38px;
    background-repeat: no-repeat;
    height: 38px;
    width: 38px;
    overflow: hidden;
    text-indent: 38px;
}

#facebook {
    background-image:url('/static/img/facebook_sky.png');
    
}

#twitter {
    background-image:url('/static/img/twitter_sky.png');
}

#instagram {
    background-image:url('/static/img/instagram_sky.png');
}

#social {
    display: inline-block;
    float: right;
    height: 100px;
    padding: 25px;
}

.break {
    clear: both;
}

