* {
  border: 0;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #ff7b7b;
}

.title {
  display: block;
  margin-bottom: 20px;
  color: white;
  font-size: 25px;
  font-weight: normal;
  text-align: center;
}

.title .maddy {
  font-weight: bold;
}

.container {
  width: 250px;
  background-color: #eee;
  padding: 20px;
  border-radius: 4px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .3);
}