/*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**/


body {
	background-color: rgb(98, 187, 225);
	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: column;
	justify-content: center;
	align-items: center;
	width: 100vw;
	height: auto;
	transform: rotate(90deg) translateY(-100vh);
	transform-origin: top left;
	scroll-snap-align: center;
}

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(98, 187, 225);
	/* background-color: blue; */
	padding-top: 20px;
	padding-bottom: 20px;
}

nav a {
	text-decoration: none;
	color:rgb(244, 235, 114);
	align-content: center;
	width: 20%;
}

nav a:hover {
	color:rgb(109, 76, 155);
}

nav img {
	width: 50%;
}


.slide1 {
	width: 100vw;
	height: 91vh;
	margin-top: 9vh;
	display: flex;
	flex-direction: column;
    background-color: rgb(98, 187, 225);
	justify-content: center;
	align-items: center;
}

.text {
    height: auto;
    width: 45%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-content: center;
    /* background-color: aqua; */
	
}

.text h1 {
    color: rgb(109, 76, 155);
	font-size: 2.5rem;
	margin-bottom: 50px;
	font-weight: 700;
	text-align: center;
	animation-name: floating;
	animation-duration: 3s;
	animation-iteration-count: infinite;
	animation-timing-function: ease-in-out;
}

@keyframes floating {
    0% { transform: translate(0,  0px); }
    50%  { transform: translate(0, 15px); }
    100%   { transform: translate(0, -0px); }   
}

.text p {
	font-size: 1.4rem;
	line-height: 24px;
	color: rgb(244, 235, 114);
	font-weight: 300;
	margin-left: 10px;
}
.email, .insta, .behance, .linked, .spotify {
	width: 60%;
	height: 50px;
	display: flex;
	flex-direction: row;
	justify-content: left;
	align-items: center;
	margin: 10px 0 10px 0;
}

.text img {
	height: 100%
}

.text a{
	text-decoration: none;
	transition: all .3s ease-in-out;
	margin-left: 20%;
}

.text a:hover{
	text-decoration: none;
	transform: scale(1.1);
}

/* i cri */


/* tablet size AND SMALLER stuff here */
@media screen and (max-width: 1150px) {
	
	body {
		overflow: hidden;
	}
	
	.wrapper {
		transform:none;
		display: flex;
		flex-direction: column;
		width: 100vw;
	}

	.nav {
		height: 5vh;
		background-color: aquamarine;
	}
	

	.slide1 {
		width: 100vw;
		height: 95vh;
		margin-top: 5vh;
	}
	
	.outer-wrapper { 
		transform: none;
		width: 100vw;
		height: 100vh;
	}

	.text {
		width: 100vw;
	}

	.text a {
		margin-left: 30%;
	}



}

@media screen and (max-width: 980px) {

	body {
		overflow: scroll;
	}

	.slide1 {
		width: 100vw;
		height: 94vh;
		margin-top: 6vh;
	}

    nav{
        justify-content: space-around;
		height: 6vh;
    }

    nav a{
        font-size: 1rem;
    }

    nav img {
        width: 95%;
	}

	.text a{
		margin-left: 28%;
	}
}
@media screen and (max-width: 650px) {

	.text a {
		margin-left: 17%;
	}

	.text h1 {
		font-size: 2rem;
	}

	.text p {
		font-size: 1.4rem;
	}

	.text img {
		width: 20%;
	}


}




