* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	background-color: #edf0f1;
}

li, a, button {
	font-weight: 500;
	font-size: 18px;
	color: #edf0f1;
	text-decoration: none;
	font-family: arial;
}

header {
	top: 0;
	width: 100%;
	position: fixed;
	float: top;
	background-color: #24252a;
	align-items: center;
	padding: 30px 10%;
}

.logo{
	float: left;
	cursor: pointer;
	
}

.company {
	position: relative;
	margin-left: 25%;
	height: 90px;
	width: 160px;
}

.top {
	display: block;
	padding-bottom: 20px;
	height: 100px;
}

.navbar{
	list-style: none;
}

.navbar li {
	display: inline-block;
	padding: 0px 20px;
}

.navbar li a {
	margin-right: auto;
	margin-left: auto;
	transition: all 0.3s ease 0s;
}

.navbar li a:hover {
	color: #0088a9;
}

button {
	display: block;
	float: right;
	padding: 9px 25px;
	background-color: rgba(0,136,169,1);
	border: none;
	border-radius: 50px;
	cursor: pointer;
	transition: all 0.3s ease 0s;
	margin-left: auto;
}

button:hover {
	background-color: rgba(0,136,169,0.5);
}

h1, h2 {
	padding-top: 40px;
	padding-bottom: 20px;
}

.text-part {
	text-align: justify;
	margin-top: 200px;
	margin-left: 12%;
	margin-bottom: 10%;
	margin-right: 36%;
	padding-bottom: 10%;
}

p {
	line-height: 30px;
}

.bunny {
	float:right;
	display: block;
	width: 50%;
	height: 100%;
	margin-top: 0;
	margin-bottom: 20px;
}

@media (max-width: 630px) {
	
	.navbar {
		display: flex;
		text-align: center;
	}
	
	.logo {
		height: 45px;
		width: 45px;
	}
	
	.company {
		margin-left: 15%;
		height: 45px;
		width: 80px;
	}
	
	li, a, button {
		font-size: 12px;
	}
	
	p {
		font-size: 12px;
	}
	
	h1 {
		font-size: 20px;
	}
	
	h2 {
		font-size: 18px;
	}
}