﻿HTML {
	height: 100%;
	font-family: 'Libre Franklin', sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: regular;
	text-decoration: none;
	color: black;
	margin: 0px;
	padding: 0px;
	background-color: white;
	scroll-behavior: smooth;
}
BODY {
	background-color: white;
	max-width: 100%;
	height: 100%;
	margin: 0px auto;
	padding: 0px;
}

.bezar {
	position: fixed;
	font-family: Arial;
	color: white;
	background: #6AB8D4;
	cursor: pointer;
	border-radius: 50%;
}

.bezar:hover {
	text-decoration: none;
	color: black;
}

@media only screen and (max-width: 600px) {	/* Mobil */
	.bezar {top: 20px; right: 20px; padding: 0px 8px 4px 8px; width: 20px; font-size: 24px;}
}
	
@media only screen and (min-width: 600px) {    /* Tablet */
	.bezar {top: 30px; right: 30px; padding: 0px 9.5px 4px 10.5px; width: 27px; height: 43px; font-size: 32px;}
}

#container {
	padding: 40px 20px; 
	background: #6AB8D4;  
	width: 100%; 
	height: 100%;
	overflow: hidden;
    box-sizing: border-box;
}

a {
	text-decoration: none;
	font-weight: regular;
	color: #6AB8D4;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}

a:hover {
	text-decoration: none;
	color: #666666;
}

text {
	cursor: default;
}