
* {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

body {
  margin: 0;
  color: white;
  font-family: sans-serif;
}

h1 {
  font-weight: normal;
}

a, 
a:visited {
  color: #e21b70;  /* hot pink */
  text-decoration: none;
}

a:hover,
a:active {
  color: #e21b70;  /* hot pink */
  text-decoration: underline;
}

.hero-container {
  background: url(https://cantorna.com/wp-content/uploads/2024/11/home_offline.jpg) no-repeat;
  height: 1200px;
  background-size: cover;
  background-position: top center; 
}

.cta-container {
  text-align: center;
}

.cta-container a {
  font-size: 1.25em;
  padding: 0 1em;
}

/* desktop views */
@media (min-width: 641px){
  .hide-on-desktop {
    display: none;
  }

  .cta-container {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -20%); 
  }

}

/* mobile views */
@media (max-width: 640px){
  .hide-on-mobile {
    display: none;
  }

  .hero-container {
    height: 345px;
    background: url(https://i.imgur.com/AFNABHv.jpg) no-repeat;
    background-size: cover;
    background-position: top center;
  }

  .cta-container {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translate(-50%, -10%);
  }

  .cta-container a {
    font-size: 1em;
  }

  h1 {
    font-size: 1.5em;
  }

}

@media (max-width: 400px){

  .cta-container a {
    display: block;
    padding-bottom: 1em;
  }

}


