/* from https://css-tricks.com/NetMag/FluidWidthVideo/Article-FluidWidthVideo.php */

.videoWrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
}
.videoWrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* from https://www.labnol.org/internet/embed-responsive-google-maps/28333/ */
.google-maps {
        position: relative;
        padding-bottom: 75%; // This is the aspect ratio
        height: 0;
        overflow: hidden;
}
.google-maps iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100% !important;
        height: 100% !important;
}

/* */
.margined {
  margin: 1rem;
  height: auto; 
}

.clock {
    zoom: 0.4;
    -webkit-transform: scale(0.99);
    -moz-transform: scale(0.99);
    transform: scale(0.99);
}
