/* Reset CSS */
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;
}
/* 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;
}


@font-face {
	font-family: 'OpenSans-Regular';
	src: url('../fonts/OpenSans-Regular.ttf') format('truetype');
}

@font-face {
	font-family: 'OpenSans-Bold';
	src: url('../fonts/OpenSans-Bold.ttf') format('truetype');
}

html, body {
  background-color: #F0F1F2;
  font-size: 1em;
  font-family: 'OpenSans-Regular';
  line-height: 1.6;
}

.container {
  background: white;
  text-align: center;
  max-width: 380px;
  width: 100%;
  margin: 0 auto;
  border-radius: 8px;
  padding: 2rem;
  color: #A5A6A7;
  margin-top: 5rem;
}

img {
  height: 70px;
}

.title {
  font-size: 1.5rem;
  font-family: 'OpenSans-Bold';
  color: black;
  margin-bottom: 1rem;
  margin-top: 1rem;
}

@media (max-width: 420px) {
  .container {
    max-width: unset;
    width: unset;
    margin-left: 1rem;
    margin-right: 1rem;
  }
}

/* Ripple effect */
.ripple {
  background-position: center;
  transition: background 0.8s;
}
.ripple:hover {
  background: #4572C4 radial-gradient(circle, transparent 1%, #4572C4 1%) center/15000%;
}
.ripple:active {
  background-color: #6eb9f7;
  background-size: 100%;
  transition: background 0s;
}

/* Button style */
button {
  margin-top: 1rem;
  border: none;
  border-radius: 2px;
  padding: 16px 24px;
  font-size: 16px;
  /* text-transform: uppercase; */
  cursor: pointer;
  color: white;
  background-color: #4572C4;
  /* box-shadow: 0 0 4px #999; */
  outline: none;
}
