body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0px;
    background-color: #0f4c79;
}
header, footer {
    background-color: #0f4c79;
    color: white;
    text-align: center;
    padding: 5px 0;
    opacity: 0.8;
}
.back-img {
    width: 100%;
    position: fixed;
    z-index: -1;
}

.left-panel, .contact {
    background-color: #0f4c79;
    color: white;
    padding: 20px;
    opacity: 0.8;
}
.ms-Grid-row img {
    width: 100%;
}
.align-left {
    text-align: left;
}
.align-right {
    text-align: right;
}
a, a:visited {
    color: yellow;
    text-decoration: none;
}
.ms-Grid-row .ms-Grid-row {
    margin: 5px 0;
}
.sponsor {
    font-weight: bold;
}
.app-form {
    display: flex;
    height: 63px;
    background-color: indigo;
    align-items: center;
    justify-content: center;
    padding: 5px;
}
.app-form:hover {
    background-color: yellow;
    color: indigo;
}
.cambox {
    width: 300px;
    height: 200px;
}
.webcam {
    position: fixed;
    top: 74px;
    right: 28px;
    transform: translateX(99.9%);
    -webkit-transform: translateX(99.9%);
    display: flex;
}

.webcam > div {

}

#showVideo {
    display: none;
}

.video-icon {
    background-color: #0f4c79;
    color: white;
    cursor: pointer;
    font-size: large;
    padding: 5px;
}

.selected {
    animation: slide-in 0.5s forwards;
    -webkit-animation: slide-in 0.5s forwards;
}
  
.dismiss {
    animation: slide-out 0.5s forwards;
    -webkit-animation: slide-out 0.5s forwards;
}

@keyframes slide-in {
    0% {
      -webkit-transform: translateX(100%);
    }
    100% {
      -webkit-transform: translateX(0%);
    }
}