*,
*::before,
*::after {
  box-sizing: border-box;
}
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-family: inherit;
	vertical-align: baseline;
}
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}
body {
  min-height: 100vh;
  line-height: 1.5;
}
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;
}
img,
picture {
  max-width: 100%;
  display: block;
}

:root {
  --max-width: 1000px;
  --border-radius: 4px;
  --black-rgb: 0, 0, 0;
  --white-rgb: 255, 255, 255;
  --light-blue-rgb: 142, 202, 230;
  --medium-blue-rgb: 33, 158, 188;
  --dark-blue-rgb: 2, 48, 71;
  --light-orange-rgb: 255, 183, 3;
  --dark-orange-rgb: 251, 133, 0;
  --complementary-green-rgb: 34, 189, 117;
  --complementary-red-rgb: 189, 34, 89;

  --stack-inter:  "Inter", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
  --stack-barlow-cond: "Barlow Condensed", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
  --stack-barlow: "Barlow", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
}

body {
  font-family: var(--stack-inter);
  font-weight: 200;
  font-size: 16px;
  line-height: 1.5;
}

.message {
  width: 80%;
  max-width: calc(var(--max-width) / 2);
  margin: 0 auto;
  padding: 16px;
  text-align: center;
  color: rgb(var(--white-rgb));
  background-color: rgb(var(--light-blue-rgb));
  border-radius: var(--border-radius);
  border: 1px solid rgba(var(--white-rgb), 0.3);
  box-shadow: 0 0 40px rgba(var(--black-rgb), 0.1);
}
.message--info {
  color: rgb(var(--white-rgb));
  background-color: rgb(var(--complementary-green-rgb));
}
.message--error {
  color: rgb(var(--white-rgb));
  background-color: rgb(var(--complementary-red-rgb));
}
