/******************************************
/* CSS
/*******************************************/

/* Box Model Hack */
* {
  box-sizing: border-box;
}

.selector-for-some-widget {
  box-sizing: content-box;
}

/******************************************
/* LAYOUT
/*******************************************/

body {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: url('https://cdn.mos.cms.futurecdn.net/jqkeHZrc7H2qJGzQkfkgnX.jpg') center no-repeat;
  height: 100vh;
}

#container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(224, 163, 64, 0.9);
  padding: 1em;
  border-radius: 1em;
  filter: drop-shadow(1em 1em .8em black);
  color: white;
  font-size: 1.5em;
}

h1 {
  margin: auto;
}

button {
  margin-bottom: 1em;
}

h2 {
  margin: auto;
}

/******************************************
/* ADDITIONAL STYLES
/*******************************************/