body {
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  display: flex;
  width: 100%;
  height: 100%;
  margin: 0px;
  padding: 0px;
  position: relative;
  min-height: 100vh;
  background-color: #ffffff;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 70px;
}

.containermsg {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: baseline;
  text-align: left;
  padding: 20px;
}

h1 {
  margin: 0;
  font-size: 80px;
  color: #ee2a24;
}

span {
  font-size: 50px;
  color: #003579;
  font-weight: 600;
}

.span2 {
  font-size: 50px;
  color: #003579;
  font-weight: 200;
}

button {
  font-size: 17px;
  margin-top: 20px;
  border: 0;
  border-radius: 50px;
  background-color: #003579;
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  padding: 16px 30px;
  cursor: pointer;
  border: solid 2px transparent;
}

button:hover {
  color: #003579;
  background: white;
  border: solid 2px #003579;
  transition: all;
  transition-duration: 300ms;
}

img {
  width: 420px;
}

@keyframes fadeOut {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 100;
  }
}
.animate-fade {
  animation: fadeOut 0.7s ease-in-out;
}

@media screen and (max-width: 1000px) {
  .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
  }

  span {
    font-size: 45px;
  }

  .containermsg {
    width: 100%;
    align-items: center;
    text-align: center;
  }

  img {
    margin-top: 20px;
    width: 350px;
  }
}

@media screen and (min-width: 700px) and (max-width: 1200px) {
  .containermsg {
    width: 80%;
  }
}
