:root {
    --orange: rgb(255,135,35);
    --blue: rgb(0, 160, 230);
}

* {
    box-sizing: border-box;
}

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

body {
    background-color: var(--blue);
    color: white;
}

body,
input {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 18px;
    font-weight: 300;
}

input {
	outline: none;
  	border: 0px none;
  	border-radius: 0.2rem;
  	padding: 0.5rem;
}

input[type="button"] {
	background-color: var(--orange);
  	color: white;
  	font-weight: 400;
  	cursor: pointer;
}

input[type="button"]:active {
 	opacity: 0.8; 
}

a {
    text-decoration: none;
    color: white;
}

a:hover, a:visited, a:active {
    opacity: 0.8;
}

h3 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    unicode-bidi: isolate;
}

#wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

#content {
    flex: 1;
}

#header {
    height: 100px;
    background-color: white;
    background-image: url(/logo_with_tagline.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto 70%;
}

#main {
    padding: 1rem;
}

#footer {
    width: 100%;
    background-color: var(--orange);
    font-size: 0.9rem;
    line-height: 1.6rem;
    padding: 1rem;
    color: white;
    text-align: left;
}

#video {
    aspect-ratio: 1 / 1;
    max-width: 100%;
    max-height: calc(100vh - 100px);
}

#resG, #resA {
 	margin-left: 0.5rem; 
}

body, .cen, .tac {
    text-align: center;
}

.lef, .tal {
    text-align: left;
}

.h100 {
    height: 100%;
}

.w100 {
  	width:100%;
}

.nw {
    white-space: nowrap;
}

#play_store {
    background-image: url(/play_store.png);
    background-repeat: no-repeat;
    background-size: 100%;
    width: calc(50% - 2rem);
    max-width: 300px;
    aspect-ratio: 550 / 200;
    display: inline-block;
    margin: 0.5rem;
    opacity: 0.8;
}

#app_store {
    background-image: url(/app_store.png);
    background-repeat: no-repeat;
    background-size: 100%;
    width: calc(50% - 2rem);
    max-width: 300px;
    aspect-ratio: 550 / 200;
    display: inline-block;
    margin: 0.5rem;
  	opacity: 0.2;
}