/* Global Remedies
******************/
/* Use border-box by default, globally */
*,
::before,
::after {
  box-sizing: border-box; }

/*
* Consistent line spacing...
* CSS Inline Layout Module Level 3: https://drafts.csswg.org/css-inline-3/#line-sizing-property
*/
html {
  line-sizing: normal; }

/* Remove the tiny space around the edge of the page */
body {
  margin: 0; }

/* Headings
***********/
/* Switch to rem units for headings */
/* @@@ Initial values are based on existing browser defaults */
h1 {
  font-size: 2rem; }

h2 {
  font-size: 1.5rem; }

h3 {
  font-size: 1.17rem; }

h4 {
  font-size: 1rem; }

h5 {
  font-size: 0.83rem; }

h6 {
  font-size: 0.67rem; }

/* Keep h1 margins consistent, even when nested */
h1 {
  margin: 0.67em 0; }

/* Typography
*************/
/* Overflow by default is bad */
pre {
  white-space: pre-wrap; }

/*
* 1. Solid, thin horizontal rules
* 2. Remove Firefox `color: gray`
* 3. Remove default `1px` height, and common `overflow: hidden`
*/
hr {
  border-style: solid;
  border-width: 1px 0 0;
  color: inherit;
  height: 0;
  overflow: visible; }

/* Embedded Elements
********************/
/*
* 1. Block display is usually what we want
* 2. Remove strange space-below when inline
* 3. Responsive by default
*/
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  vertical-align: middle;
  max-width: 100%; }

/*
* Maintain intrinsic aspect ratios when `max-width` is applied
* (iframe, embed, and object have no intrinsic ratio, set height explicitly)
*/
img,
svg,
video,
canvas {
  height: auto; }

/*
* There is no good reason elements default to 300px,
* and audio files are unlikely to come with a width attribute
*/
audio {
  width: 100%; }

/* Old Browsers
***************/
/* Remove the border on images inside links in IE 10 and earlier */
img {
  border-style: none; }

/* Hide the overflow in IE 10 and earlier */
svg {
  overflow: hidden; }

/* Default block display on HTML5 elements */
article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block; }

/*
* 1. Add the correct box sizing in IE 10
* 2. Remove the padding in IE 10
*/
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0; }

/* Fonts */
@font-face {
  font-family: "Main";
  src: url(/fonts/SourceSansPro-Regular.ttf); }

@font-face {
  font-family: "Main";
  src: url(/fonts/SourceSansPro-Bold.ttf);
  font-weight: bold; }

.flx-cntr, .pictures {
  display: flex;
  justify-content: center;
  align-items: space-between;
  flex: 1 1 auto; }

.row-full-width {
  display: flex;
  width: 100%;
  margin: auto;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  padding: 20px 36px; }

#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  box-shadow: 0 0 5px 0 #20123a1c;
  transition: all 0.2s ease;
  background-color: #1d1133; }

.nav-link {
  background-color: rgba(255, 255, 255, 0);
  padding-right: calc(16px + 1vw);
  padding-left: calc(16px + 1vw);
  justify-content: center;
  color: white;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.15s ease-in-out; }
  .nav-link:hover {
    color: #cfcfd8; }
  .nav-link span {
    position: relative;
    pointer-events: none; }
  .nav-link:hover span::after {
    width: 100%;
    opacity: 1 !important;
    transition: all 0.1s ease; }

.nav-link span::after {
  height: 2px;
  background: linear-gradient(-90deg, #ff9100 0%, #f10366 50%, #6173ff 100%);
  opacity: 0;
  display: block;
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  width: 0;
  margin: auto;
  border-radius: 5px;
  transition: all 0.2s ease; }

html {
  background-color: #f9f7fd; }

body {
  color: #1c1c1e;
  font-family: "Main", sans-serif;
  -webkit-text-size-adjust: 100%; }

p {
  line-height: 1.5; }

img {
  max-width: 100%; }

.wrapper {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding: 30px 40px 0 40px;
  margin-top: 8rem; }

.list {
  display: flex; }

.app-icon {
  display: flex;
  flex-direction: row;
  align-items: center; }
  .app-icon * {
    margin: 1rem;
    margin-left: 0; }
  .app-icon img {
    width: 150px;
    height: 150px;
    border-radius: 17.544%; }

button {
  background-color: #0060df;
  color: #ffffff;
  border-radius: 5px;
  padding: 5px;
  width: 40%;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  height: 2.3rem;
  transition: all 0.15s ease; }
  button:hover {
    background-color: #0250bb;
    border-color: #0250bb; }

input {
  height: 2.3rem;
  width: 100%;
  background: #fff;
  font-size: 1.3rem;
  color: #1c1c1e;
  border: 1px solid rgba(12, 12, 13, 0.3); }

textarea {
  width: 100%;
  background: #fff;
  font-size: 1.3rem;
  color: #1c1c1e;
  border: 1px solid rgba(12, 12, 13, 0.3); }

h1 {
  font-size: 3rem; }

.pictures {
  margin-top: 2rem;
  margin-bottom: 2rem;
  list-style: none; }
  .pictures li {
    margin-right: 2%; }

footer {
  font-size: 0.75rem; }
