@charset "UTF-8";

body{
	margin: 0;
	padding: 0;
}

* {
	box-sizing: border-box;
}

@font-face {
	font-family: "KnuckleHead";
	src: url(fonts/Knucklehead.otf);
}

header {
    width: 100%;
    position: fixed;
    z-index: 1000;
    background-image: url(images/header-bg.jpg);
    display: flex;
    align-items: center;
    padding: 40px;
    justify-content: space-around;
}

#logo {
    width: 200px;
    height: auto;
}

nav a {
    text-decoration: none;
    color: white;
    font-family: KnuckleHead;
    font-size: 35px;
    margin-right: 40px;
    padding: 10px 0px;
    padding-bottom: 6px;
}

nav a:hover {
    border-bottom: 5px solid #692e44;
    border-top: 5px solid #692e44;
    transition: all 0.5s;
}

/* SCREEN 1 */

#screen1 {
	background:url(images/section1-bg.jpg) top center no-repeat fixed;
    background-size:cover;
    width: 100%;
	height: 1080px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.s1-skater {
	background: url(images/s1-skater.png) no-repeat;
    background-size: 800px;
	height: 1000px;
	margin-top: 750px;
	position: absolute;
	width: 1050px;
	z-index: 5;   
}

/* SCREEN 2 */

#screen2 {
	background:url(images/section2-bg.jpg) top center no-repeat fixed;
	height: 980px;
    overflow: hidden;
}

.s2-board1 {
    width: 1000px;
    height: 1000px;
    position: absolute;
    margin-top: 150px;
    background: url(images/s2-board1.png) no-repeat;
}

.s2-board2 {
    width: 1000px;
    height: 1000px;
    position: absolute;
    margin-top: 75px;
    background: url(images/s2-board2.png) no-repeat;
}

.s2-board3 {
    width: 1000px;
    height: 1000px;
    position: absolute;
    margin-top: 115px;
    background: url(images/s2-board3.png) no-repeat;
}

.s2-info {
    width: 800px;
    height: 1000px;
    margin-top: 400px;
    margin-left: 1000px;
}

#s2-headline {
    width: 300px;
    height: auto;
}

ul {
    color: white;
    list-style: none;
    margin-left: -38px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: lighter;
    line-height: 150%;
}

#button {
    background-color: #692e44;
    color: #fff;
    padding: 5px;
    padding-top: 6px;
    width: 120px;
    height: 30px;
    text-align: center;
    border-radius: 20px;
    font-size: 14px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

/* SCREEN 3 */

#screen3 {
	background:url(images/section3-bg.jpg) top center no-repeat fixed;
	height: 1000px;
    overflow: hidden;
    background-size: cover;
    display: flex;
    /* flex-direction: row-reverse; */
    justify-content: space-between;
}

#girl {
    background: url(images/s3-girl.png) no-repeat;
    height: 1000px;
    width: 400px;
    background-size: contain;
    margin-right: 50px;
    margin-top: 280px;
    z-index: 200;
}

#boy {
    background: url(images/s3-boy3.png) no-repeat;
    height: 1000px;
    width: 550px;
    background-size: cover;
    margin-right: 0px;
    margin-top: 100px;
    z-index: 190;
}

#s3-info {
    height: 900px;
    color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 350px;
    margin-top: 100px;
}

#s3-info h1 {
    font-family: KnuckleHead;
    font-size: 80px;
    letter-spacing: 2px;
    margin-top: -2px;
}

#s3-info p {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

#s3-button {
    width: 150px;
    height: 35px;
    border: 1px solid white;
    background-color: transparent;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: #fff;
    padding: 6px;
    padding-top: 7px;
}

#s3-button:hover {
    color: #692e44;
    background-color: white;
    transition: all .5s;
}

/* SCREEN 4 */

#screen4 {
	background:url(images/section4-bg.jpg) top center no-repeat fixed;
	height: 800px;
    overflow: hidden;
    background-size: cover;
    z-index: 220;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

#address h2 {
    font-family: KnuckleHead;
    font-size: 30px;
    letter-spacing: 1px;
}
#address p {
    font-size: 15px;
    margin-right: 100px;
}

#social img {
    width: 50px;
    margin-right: 15px;
}

#social p {
    font-size: 15px;
}