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

body {
  width: 100%;
  height: 100%;
  background: #f9f5ea;
  font-family: "Montserrat", sans-serif;
}

.flex-container {
  display: flex;
}

header {
  justify-content: start;
  padding: 2em 0 0 2em;
}

header > img {
  width: 200px;
}

.container {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 70vh;
  background-image: url("image\ 1.png");
  background-size: 300px;
  background-repeat: no-repeat;
  background-position: center center;
  text-align: center;
}

.container > h1{
    line-height: 50px;
}

.container > h1 > span{
    color: #FF0000;
}

p{
    text-align: center;
    margin: 1.5em;
}