/* 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;
}

/* 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;
}

/*
* Hide only visually, but have it available for screen readers: h5bp.com/v
*/
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/*
* Extends the .visuallyhidden class to allow the element to be focusable
* when navigated to via the keyboard: h5bp.com/p
*/
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

html, body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-size: 100%;
}

body {
  background-color: #fff;
  color: #505050;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg {
  max-width: 100%;
}

  .container {
    width: 100%;
    background-color: #EAF1FA;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    background: #151620;   
  }

  .container h1,
  .container h2,
  .container h3{
    color: #FFF;
  }

  .container h1{
    font-size: 2.2rem;
    line-height: 1.5;
    font-weight: bold;
  }

  .container h2{
    font-size: 1.8rem;
    line-height: 1.5;
  }  

  .container h3{
    font-size: 1.2rem;
    line-height: 1.5;
    font-weight: bold;
  }  

  .logo{

  }  

  .button{
    font-size: 1.20rem;
    padding: 1rem 1.5rem;
    background: #ffee0d;
    color: #000;
    text-decoration: none;
    border-radius: 3rem;
    margin-top: 1rem;
    transition: all 250ms ease-in;
    display: inline-block;
  }

  .button:hover{
    background: #e9d907
  }

  .about{
    margin-top: 1rem;
    background: #FFF;
    padding: 2rem;
    border-radius: 1rem;
  }

  .about h3{
    text-align: center;
    margin-bottom: 0.5rem;
    color: #000;
  }

  .list{
    padding: 0rem
  }

  .list li{
    margin-bottom: 10px;
    padding-left: 14px;
    position: relative;
  }

  .list li::before{
    display: block;
    content: "";
    width: 8px;
    height: 8px;
    background: #ffee0d;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -2px;
  }

  .items{
    display: flex;
  }

  .item{
    width: 50%

  }

  .button-container{
    text-align: center;
  }

  @media (max-width: 480px) {
    .container h1{
      font-size: 1.4em;
      line-height: 1.5;
      font-weight: bold;
    }

    .container h2{
      font-size: 1.2rem;
      line-height: 1.5;
    } 
  }