@import "styles.css";
/*SETUP*/

html{
  scroll-behavior: smooth;
}

h1, h2, h3, h4{
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
}

p, button, input, span, li, a, div{
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
}

* {
  margin: 0;
  padding: 0;
}

body {
  color: #FFF;
  background-color: var(--grey-dark);
  position: relative;
}

button {
  cursor: pointer;
}

:focus {
  outline: none !important;
}

button, input, image{
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

button{
  background-color: transparent;
  border: none;
}

.hide-on-mobile{
  display: flex !important;
}

.hide-on-desktop{
  display: none !important;
}

.hide-until-1024{
  display: flex !important;
}

.show-until-1024{
  display: none !important;
}

.container{
  padding: 0px 40px;
  max-width: 360px;
  margin: auto;
}

@media screen and (max-width: 768px){
  .hide-on-mobile{
    display: none !important;
  }
  
  .hide-on-desktop{
    display: flex !important;
  }  
}

@media screen and (max-width: 1024px){
  .hide-until-1024{
    display: none !important;
  }
  
  .show-until-1024{
    display: flex !important;
  } 
}

@media screen and (min-width: 768px) {
  .container{
      max-width: 768px;
  }
}

@media screen and (min-width: 1024px) {
  .container{
      max-width: 1024px;
  }
}

@media screen and (min-width: 1280px) {
  .container{
      max-width: 1080px;
  }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

iframe.instagram-media {
    margin: 0 auto !important;
}