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

html,
body {
  max-width: 100vw;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-image: url('/images/bg.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 100vh;
}

.container {
  max-width: 1366px;
  min-height: 100vh;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 45px;
}

.img-logo {
  max-width: 422px;
  max-height: 74px;
  margin-bottom: 20px;
}

.img-social {
  max-width: 366px;
  max-height: 114px;
}

img {
  width: 100%;
}

@media only screen and (max-width: 600px) {
  .img-social {
    max-width: 200px;
    max-height: 74px;
  }

  .container {
    gap: 25px;
  }
}
