@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;900&display=swap');

/* 02254A */

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  outline: none;
  text-decoration: none;
  text-align: center;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #010F1E;
}

main {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  height: 100vh;
}

h1 {
  color: #034A94;
  font-weight: 900 !important;
  font-size: 46px;
}

h3, h4 {
  color: #CDDBEA;
  font-size: 18px;
}

img {
  width: 50%;
}

button {
  margin-top: 20px;
  border: none;
  padding: 12px 45px;
  border-radius: 3px 15px 3px 15px;

  background-color: #E3AF00;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  border-radius: 15px 3px 15px 3px;
}

a {
  color: #FFFFFF;
}

@media screen and (max-width: 992px) {
  main {
    display: flex;
    flex-direction: column-reverse;
  }
  img {
    width: 100%;
  }
}