body{
	top: 0px;
	left: 0px;
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
	font-family: sans-serif;
	background: #FFFFFF;

}

h1{
	font-family: "Patrick Hand SC"
}

h2{
	font-family: "Patrick Hand SC";
	font-size: 36px;

}

h3{
	font-family: "Patrick Hand SC";
	font-size: 24px;
}

p{
	font-family: "Scope One", serif;
  	font-weight: 400;
  	font-style: normal;
}

.button{
    display: inline-block;
    position: relative;
    background: #FFC107;
    color: black;
    padding: 10px 20px;
    border-radius: 40px;
    border-bottom: 2px solid #b78b08;
    transition: 0.3s;
}

.button:hover{
  background: #fdd24f;
}

.p_float_left{
  width: calc(100% - 215px);
  float: left;
  display: inline-block;
}

.patrick-hand-sc-regular {
  font-family: "Patrick Hand SC", cursive;
  font-weight: 400;
  font-style: normal;
}

.scope-one-regular {
  font-family: "Scope One", serif;
  font-weight: 400;
  font-style: normal;
}

.photo{
    height: 200px;
    width: 200px;
    border: 8px solid white;
    border-radius: 2px;
    box-sizing: border-box;
    background-position: center;
    background-size: cover;
    box-shadow: 0 2px 6px #0000001f;
    transform: rotate(2deg) translateY(-10px) translateX(-5px);
    position: relative;
    display: inline-block;
    float: right;
    margin-left: 10px;

}

.bowl_wrapper{
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
}

.holding_page_logo{
	background: url(../img/logo_big.png);
	position: relative;
	display: block;
	height: 50vh;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	width: 400px;
	margin: auto;
	margin-top:10vh;
}

.header_logo{
    background: url(../img/logo_big.png);
    position: relative;
    display: block;
    height: 30vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 267px;
    margin: auto;
    margin-top: 2vh;
}

.holding_page_background{
	background: url(../img/bg_pattern-full.png);
	position: fixed;
	bottom: 0px;
	background-position: bottom;
	background-repeat: no-repeat;
	background-size: contain;
	width: 100%;
	margin: auto;
	z-index: -1;
	min-height: 100vh;
	max-height: 100%;
}

.home_page_background{
	background: url(../img/bg_pattern-full-inverted.png);
    position: fixed;
    top: 0px;
    background-position: top;
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    margin: auto;
    z-index: -1;
    min-height: 100vh;
    max-height: 100%;
    opacity: 0.3;
    mix-blend-mode: multiply;
}

.page_wrapper{
		position: absolute;
    display: block;
    width: 100%;	
    padding-bottom: 100px;
}

.page_section{
    position: relative;
    display: block;
    max-width: 900px;
    margin: auto;
    width: 80%;
    background: #f7f7f7;
    /* border-top: 1px solid #b9c841; */
    border-bottom: 1px solid #dfdfdf;
    color: #1c1c1c;
    padding: 50px;
    padding-bottom: 20px;
    padding-top: 5px;
    box-sizing: border-box;
    border-radius: 10px;
    margin-bottom: 20px;
    margin-top: 10px;
}

.launch_date{
	    font-family: "Patrick Hand SC";
    background: #ff6022;
    color: white;
    display: inline;
    font-size: 20px;
    padding: 5px 10px;
    border-radius: 5px;
    letter-spacing: 1px;
}

@media only screen and (max-width: 600px) {
  .page_section{
    width: 95%;
    padding: 20px;
    padding-bottom: 20px;
    padding-top: 5px;
    box-sizing: border-box;
    border-radius: 10px;
    margin-bottom: 20px;
    margin-top: 10px;
  }

  .photo{
    height: 180px;
    width: 300px;
    border: 8px solid white;
    border-radius: 2px;
    box-sizing: border-box;
    background-position: center;
    background-size: cover;
    box-shadow: 0 2px 6px #0000001f;
    transform: rotate(1deg);
    position: relative;
    display: block;
    margin-top: 15px;
    margin-bottom: 10px;
    margin-left: calc((100% - 300px)/2);
    float: left;
  }

  .p_float_left{
      width: 100%;
      float: unset;
      display: inline-block;
      margin: auto;
    }
}