@import url("https://fonts.googleapis.com/css?family=Open+Sans&display=swap");

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

html,
body {
  height: 100%;
}

body {
  background-color: white;
  font-family: "Open Sans", Arial, sans-serif;
}

h1 {
  margin-top: 40px;
  color: #777;
  font-weight: 500;
}
p {
  color: #777;
  margin: 10px 0;
}

.container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 80px;
}

.container img {
  width: 30%;
}

@media only screen and (max-width: 600px) {
  .container img {
    width: 50%;
  }
}
