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

.app {
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #FBFCFF;
}

.logoContainer {
  margin-top: 4rem;
  display: flex;
}

.logoContainer img {
  width: 100%;
}

.titleContainer {
  height: 100%;
  display: flex;
  margin-left: 0.25rem;
}

.titleWrapper {
  margin-top: auto;
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 2.7rem;
  font-family: 'Roboto';
}

.partOne {
  color: #f26a21;
}

.partTwo {
  color: #2b8dcc;
}

.backgroundImage{
  margin-top: auto;
  margin-bottom: auto;
  max-width: max(80%, 400px)
}

@media screen and (max-width:500px) {
  .titleWrapper{
    font-size: 1.5rem;
    line-height: 1.2rem;
  }
  .logoContainer img{
    width: 60px;
  }
}