@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");

html,
body {
  margin: 0 auto;
  padding: 0;
  background: linear-gradient(
    140deg,
    rgba(78, 70, 180, 1) 0%,
    rgba(22, 20, 52, 1) 100%
  );
  font-family: "Poppins", sans-serif;
  letter-spacing: 2px;
  color: #9e9e9e;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.logo {
  width: calc(100vw / 3);
  height: calc(100vh / 3);
  background-color: white;
  -webkit-mask: url(/img/brisbane.svg) no-repeat center;
  mask: url(/img/brisbane.svg) no-repeat center;
  margin-bottom: 100px;
}

.main-text {
  font-size: 25px;
  margin-left: 60px;
  text-align: center;
}

.contact {
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
