
/******************************************
/* CSS
/*******************************************/

/* Box Model Hack */
*{
  box-sizing: border-box;
}

/******************************************
/* CUSTOM PROPERTIES
/*******************************************/



/******************************************
/* TYPOGRAPHY
/*******************************************/



/******************************************
/* LAYOUT
/*******************************************/

body {
  background: rgb(204, 208, 216);

  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  background: white;

  width: 30vw;
  border-radius: 15px;
  box-shadow: 0px 10px 50px 28px rgba(0,0,0,0.1);
  text-align: center;
  padding: 50px;
}

ul {
  padding-left: 0;
  list-style-type: none;
  text-align: left;
}


/******************************************
/* ADDITIONAL STYLES
/*******************************************/
