/*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(244, 235, 114);
	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: auto;
	transform: rotate(90deg) translateY(-100vh);
	transform-origin: top left;
	scroll-snap-align: center;
    height: auto;
}

nav {
	width: 100vw;
    height: 9vh;
	font-size: 17px;
	display: flex;
	justify-content:center;
	align-items: center;
	position: fixed;
	text-align: center;
	top: 0;
	z-index: 10;
	background-color: rgb(244, 235, 114);
	/* 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(232, 114, 163);
}

nav a:active {
	color:rgb(232, 114, 163);
}

nav img {
	width: 50%;
}

.slide1 {
	height: 91vh;
    width: 100vw;
    margin-top: 9vh;
	display: flex;
    flex-direction: row;
	justify-content: space-around;
	align-items: center;
	scroll-snap-align: center;
    background-color:rgb(244, 235, 114);
}

.slide2 {
    height: 91vh;
    width: auto;
    margin-top: 9vh;
	display: flex;
    flex-direction: row;
	justify-content: space-around;
	align-items: center;
	scroll-snap-align: center;
    background-color:rgb(244, 235, 114);
}

.blurb {
    width: 40vw;
    text-align: center;
    margin: 0 0 0 5vh;
    text-align: left;
    flex-direction: column;
}

.blurb h2 {
    color: rgb(232, 114, 163);
    font-size: 1.5rem;
    font-weight: 700;
}

.blurb p {
    color: rgb(109, 76, 155);
    margin-top: 15px;
    line-height: 25px;
    font-size: .95rem;
}

.slide1 img{
    margin-left: 5vh;
    margin-right: 5vh;
    height: 88%;
}

.work {
    height: 88%;
    display: flex;
    flex-direction: row;
}

.work img {
    margin-left: 6vh;
    margin-right: 6vh;
    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 {
		height: auto;
        width: 100vw;
        display: flex;
        flex-direction: column;
        /* padding-top: 120px; */
        margin-top: 9vh;
	}

    .slide1 img {
        width: 50%;
        margin-bottom: 70px;
    }

    .slide2 {
        width: 100vw;
        margin-top: 0;
        /* padding-bottom: 200vh; */
    }

    .blurb {
        width: 70%;
        margin: 35px 0 30px 0;
    }

    .work {
        height: auto;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items:center;
        padding-top: 50px;
        margin: auto;
        padding-bottom: 70vh;
    }

    .work img {
        width: 70%;
        margin: auto;
        margin-bottom: 100px;
    }


}

	

@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%;
    }

    .slide1 {
        padding-top: 50px;
    }

    .slide2 {
        margin-top: 0;
    }

    .work {
        margin-top: 30px;
        padding: 0;
        padding-bottom: 20hv;
    }

    .work img {
        margin: 0 0 50px 0;
    }
    
    .blurb {
        width: 80%;
    }

    .blurb p {
        font-size: .8rem;
    }

}

@media screen and (max-width: 680px) {

    nav {
        height: 6vh;
    }

    .slide1 {
        margin-top: 6vh;
        padding-top: 20px;
    }
    nav a{
        font-size: .9rem;
    }

    .slide1 img, .work img {
        width: 85%;
    }


}




