@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --primary-color: #009bae;
  --background-dark: #111;
  --background-blue: #013236;
}

html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  color: #fff;
  font-family: "Montserrat";
  background-color: var(--background-dark);
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 350px;
  margin: 0 auto;
  padding: 40px 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.subtitle {
  text-align: center;
  line-height: 1.8rem;
  font-size: 1.8rem;
  font-weight: bold !important;
}

@media (min-width: 500px) {
  .container {
    width: 80%;
    max-width: 728px;
  }
}

@media (min-width: 1000px) {
  .container {
    width: 80%;
    max-width: 1500px;
  }
}
