@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}
*,
::after,
::before,
::backdrop,
::file-selector-button {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
}
*,
::after,
::before,
::backdrop,
::file-selector-button {
  box-sizing: border-box;
  border: 0 solid;
}
ol,
ul,
menu {
  list-style: none;
}
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  vertical-align: middle;
}
img,
video {
  width: 100%;
  height: auto;
}
.main-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100vw;
  height: 100vh;
  text-align: center;
}
.nav-image-container {
  width: 70%;
  margin: 0.5rem 0 0.5rem 0;
}
.nav-image{
  object-fit: contain;
}
.hero-image {
  width: 100%;
  object-fit: contain;
}
.headline {
  width: 100%;
  gap: 0.3rem;
  font-size: 2.5rem;
  font-weight: 600;
  margin: 1rem 0 1rem 0;
}
.small-budget {
  color: #77a8bb;
}
.big-change {
  color: #bf6c46;
}
.subheadline-container {
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1rem 0 1rem 0;
}
.subheadline {
  width: 90%;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.3rem;
}
.cta {
  background-color: #ffc907;
  padding: 1rem;
  font-size: 1rem;
  border-radius: 2rem;
  margin: 0.5rem 0 0.5rem 0;
  font-weight: 600;
  transition: 0.2s ease;
}
.cta:hover{
  cursor: pointer;
  background-color: #e5b406;
}
.cta:active{
  background-color: #cca005;
}

/* Medium screens and up breakpoint */
@media (min-width: 768px) {
  .nav-image-container{
    width: 15%;
  }
  .headline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 3.4rem;
  }
  .subheadline {
    width: 70%;
    font-size: 1.2rem;
    line-height: 1.8rem;
  }
  .cta{
    font-size: 1.5rem;
    margin: 1rem 0 1rem 0;
  }
}

/* Large screens and up breakpoint */
@media (min-width: 1024px) {
  .headline{
    font-size: 4.5rem;
  }
}
