/*portfolio css*/

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}


* {
    /* moves padding and border to inside the "div" */
    box-sizing: border-box;
}
/*********************************************************************************************************************/

/**okay code below please**/

html {
    scroll-behavior: smooth;
}

body {
	background-color: rgb(232, 114, 163);
	font-family: 'rowdies', sans-serif;
	font-weight: 300;
	overflow: hidden;
}

.outer-wrapper {
	width: 100vh;
	height: 100vw;
	overflow: auto;
	transform: rotate(-90deg) translateX(-100vh);
	transform-origin: top left;
	overflow-y: scroll;
	overflow-x: hidden;
	position: absolute;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
}

.wrapper {
	display: flex;
	flex-direction: row;
	/* width: 1050vw; */
    width: auto;
	transform: rotate(90deg) translateY(-100vh);
	transform-origin: top left;
	scroll-snap-align: center;
}

nav {
	width: 100vw;
	font-size: 17px;
	display: flex;
	justify-content:center;
	align-items: center;
	position: fixed;
	text-align: center;
	top: 0;
	z-index: 10;
	background-color: rgb(247, 172, 66);
	padding-top: 20px;
	padding-bottom: 20px;
}

nav a {
	text-decoration: none;
	color: rgb(109, 76, 155);
	align-content: center;
	width: 20%;
}

nav a:hover {
	color: rgb(244, 235, 114)
}

nav a:active {
	color: rgb(244, 235, 114);
}

nav img {
	width: 50%;
}

.slide1 {
	height: 100vh;
	display: flex;
    flex-direction: column;
	justify-content: center;
	align-items: center;
	scroll-snap-align: center;
    background-color: rgb(247, 172, 66)
}

.mj {
    width: 100vw;
    display: flex;
	justify-content: center;
	align-items: center;
    margin-top: 50px;
}

.mj img{
    width: 75%;
    max-width: 1000px;
}


.blurb {
    width: 65%;
    text-align: center;
    margin-top: 40px;
}

.blurb h2 {
    color: rgb(244, 235, 114);
    font-size: 1.3rem;
    font-weight: 700;
}

.blurb p {
    color: rgb(109, 76, 155);
    margin-top: 15px;
    line-height: 25px;
    font-size: .95rem;
}

.slide2 {
	width: 100vw; 
	height: 100vh;
	background-color: rgb(244, 235, 114);
	margin-top: 50px;
	display: flex;
	flex-direction: column;
	align-items: center;
    justify-content: center;
}

.manual {
    width: 100vw;
    height: auto;
    display: flex;
    flex-direction: column;
    text-align: center;
	align-items: center;
    justify-content: center;
}

.manual h2 {
    color:rgb(247, 172, 66);
	font-size: 30px;
    font-weight: 300;
    line-height: 25px;
    margin-bottom: 20px;
}


.slide3 {
	width: auto;
	height: 100vh;
	background-color: rgb(244, 235, 114);
	margin-top: 50px;
	display: flex;
    justify-content: row;
    align-items: center;
}

.brandscroll {
    height: 75%;
    display: flex;
    flex-direction: row;
    margin: 0 200px 0 100px;
}

.brandscroll img {
    height: 100%;
}


/* tablet size AND SMALLER stuff here */
@media screen and (max-width: 1000px) {
	
	body {
		overflow: hidden;
	}
	
	.outer-wrapper { 
		transform: none;
		width: 100vw;
        height: auto;
	}
	
	.wrapper {
		transform:none;
		display: flex;
		flex-direction: column;
		width: 100vw;
		height: auto;
	}

	.slide1, .slide2, .slide3 {
		height: auto;
        width: auto;
        display: flex;
        flex-direction: column;
        
	}
	.slide1 {
		height: auto;
        padding-top: 120px;
        padding-bottom: 70px;
	}

    .mj {
        width: 80%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 50px;
    }
    
    .mj img{
        width: 100%;
        max-width: 1000px;
    }

    .blurb {
        text-align: left;
        width: 70%;
        margin-bottom: 30px;
    }
    .slide2 {
		height: auto;
        background-color: rgb(232, 114, 163);
        justify-content: center;
        align-items: center;
	}
    
    .slide3 {
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .brandscroll {
        height: auto;
        width: 100%;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-top: 50px;
        margin: auto;
        margin-bottom: 100px;
    }

    .brandscroll img {
        width: 85%;
    }
    
    .back {
        height: auto;
        width: 100vw;
    }

    .begin {
        display: none;
    }

    .top {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .top a {
        font-size: 1.9rem;
        padding: 40px 0 50px 0;
        text-decoration: none;
        color: rgb(244, 235, 114);
    }


}

	

@media screen and (max-width: 980px) {

	body {
		overflow: scroll;
	}

	.outer-wrapper {
		height:auto;
	}

    nav{
        justify-content: space-around;
    }

    nav a{
        font-size: 1rem;
    }

    nav img {
        width: 95%;
    }
    
    .mj {
        width: 80%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 20px;
    }

    .iframe {
        height: 400px;
    }

}

@media screen and (max-width: 397px) {

    nav a{
        font-size: .9rem;
    }


}




