/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* --- reset css end --- */



html,
body {
  width: 100vw;
  height: 100vh;
  min-width: 678px;
  font-family: '微軟正黑體', sans-serif;
  background: linear-gradient(#E05122 0 37vh, #fff 37vh 98vh, #E05122 98vh 100vh);
}

img {
  max-width: 100%;
}

header {
  width: 100%;
  padding: 2rem;
}

.container {
  display: flex;
  max-width: 1000px;
  height: 70vh;
  margin: 0 auto;
  padding: 0 1.25rem;
  justify-content: space-evenly;
  align-content: space-around;
}

.title {
  margin-bottom: 1rem;
  transform: translateY(-14%);
}

.section-left,
.section-right {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.app {
  background: #fff;
  margin: 0 6rem 0 3rem;
}

.app-title {
  color: #E05122;
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: 1rem;
  text-align: center;
  font-weight: bold;
  padding-left: 24px;
}

.app-text {
  color: #666;
  font-size: 1.25rem;
  margin: 1.5rem 0 .75rem;
  text-align: center;
}

.app-group {
  display: flex;
  justify-content: space-between;
}

.app-link {
  display: flex;
  flex-direction: column;
  justify-content: start;
}

.app-link:first-of-type {
  margin-right: 2rem;
}

.app-link__qrcode,
.app-link__badge img {
  width: 10rem;
}

.app-link__qrcode {
  padding: .5rem;
  border: 1px solid #666;
  border-radius: 5px;
}

.app-link__badge {
  margin-top: 1rem;
  /* filter: drop-shadow(0 5px 0 #444); */
  transition: .5s;
  /* box-shadow: 3px 5px 0 #444; */
  /* border-radius: 5px; */
}

.app-link__badge:hover {
  -webkit-filter: invert(100%) drop-shadow(3px 5px 0 #444);
  filter: invert(100%) drop-shadow(3px 5px 0 #444);
}