* { box-sizing: border-box }
a {
	text-decoration: none;
}
h1 {
	font-size: 2rem;
}
h2 {
	font-size: 1.8rem;
}
h3 {
	font-size: 1.4rem;
}

body {
	font-family: "Poppins","Helvetica","Arial","Lucida","sans-serif";
	font-size: .9rem;
	background-image: url(/img/background_mobile.jpg);
}

html,
body,
#goodthing
{
	height: 100%;
	overflow-y: hidden;
	scroll-snap-type: x;
}

/* If you want to override your materialize css then you have to use media query for this like in your custom css file which should be defined below your materialize.css file */

@media only screen and (min-width: 701px){
  .s12{
    width:100%
  }
  .hide-on-small-only{
    display:none;
  }
  /* other css...    */
}

/* From https://google.github.io/material-design-icons/#getting-icons */

/* Rules for sizing the icon. */
.material-icons.md-18 { font-size: 18px; }
.material-icons.md-24 { font-size: 24px; }
.material-icons.md-36 { font-size: 36px; }
.material-icons.md-48 { font-size: 48px; }

/* Rules for using icons as black on a light background. */
.material-icons.md-dark { color: rgba(0, 0, 0, 0.54); }
.material-icons.md-dark.md-inactive { color: rgba(0, 0, 0, 0.26); }

/* Rules for using icons as white on a dark background. */
.material-icons.md-light { color: rgba(255, 255, 255, 1); }
.material-icons.md-light.md-inactive { color: rgba(255, 255, 255, 0.3); }

/* From Materialize.css, amended */
.input-field > label.no-pointer-event {
  pointer-events: none;
}
.input-field > input:focus + label,
.input-field > input:valid + label {
	transform: translateY(-14px) scale(0.8);
	transform-origin: 0 0;
}

  ol {
    list-style-position: inside;
    padding-inline-start: 0px;
  }
  li {
    line-height: 1.1rem;
    padding-bottom: .7rem;
  }

.allCardsContainer {
    height: 100%;
    width: 900vw;
    display: grid;
    grid-template: 'a a a a a a a a a';
  }
.cardContainer1 {
    height: 100%;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    scroll-snap-align: start;
    scroll-snap-stop: normal;
    position: relative;
  }
  .cardContainer2 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    font-size: 1rem;
    color: #333;
  }
  .cardBox {
    width: 95%;
    max-width: 400px;
    border-radius: 21px;
    box-shadow: 5px 5px 5px #00000040;
    background-color: white;
    overflow: hidden;
  }
  .cardImage {
    width: 100%;
  }
  .heightMachine {
    height: 0;
    padding-top: 139.3%;
    position: relative;
  }
  .hide {
    display: none;
  }
  .cardBoxInside {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 1.5rem;
    padding-top: 0.5rem;
  }
  .pointer {
	position: absolute;
    bottom: 15px;
    right: 15px;
    z-index: 10;
    max-width: 10%;
  }
  .title {
    display: none;
  }