@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

body,
html {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  background: url(../img/bg-home.jpg) no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.main {
  width: 100%;
  height: 100vh;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 90vh;
  width: 50%;
  margin: 0 auto;
}

.column-wrapper .column {
  text-align: center;
}

.column img {
  width: 280px;
}

.text {
  color: #fff;
  font-size: 2.4em;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.button-wrapper {
  text-align: center;
  margin-top: 30px;
}

.button-wrapper a {
  padding: 16px;
  margin: 10px;
  background: #f3ba02;
  text-decoration: none;
  color: #13264a;
  font-weight: 700;
  border-radius: 50px;
}

.button-wrapper a:hover {
  color: #f3ba02;
  background: #13264a;
}

@media screen and (max-width: 1024px) {

  .container {
    width: 90%;
  }

  .column img {
    width: 180px;
  }

  .text {
    font-size: 1.6em;
  }

}