html {
    scroll-behavior: smooth;
    scroll-behavior: auto;
	background-color: #232121;
}

* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

.navbar {
    width: 100%;
    height: 2.5vw;
    margin: auto;
    padding: 35px 0;
    display: flex;
    align-items: center;
	font-size: 2vw;
    justify-content: space-between;
    background-color: rgb(68, 68, 68, 0.6);
    position: fixed;
}

.logo {
    width: 5vw;
    cursor: pointer;
    margin-left: 2%;
    transition: 0.5s;
}

.logo:hover {
    filter: brightness(120%);
}

.navbar ul li {
    list-style: none;
    display: inline-block;
    margin: 0 20px;
}

.navbar ul li a {
    text-decoration: none;
    color: #ffff;
    transition: 0.5s;
}

.navbar ul li a:hover {
    color: rgb(199, 199, 199);
}

.home h1 {
	color: #CCCCCC;
	font-size: 100px;
	margin-bottom: 5px;
}

.home h2 {
	color: #CCCCCC;
	font-size: 50px;
}

.home {
    width: 100%;
    height: 100vh;
    background-color: rgb(26, 26, 26);
	display: flex;
    justify-content: center;
    align-items: center;
}

.policy h1 {
	color: #CCCCCC;
	font-size: 75px;
	transform: translateY(150px);
    margin-bottom: 5px;
}

.policy p {
	transform: translateY(50px);
}

.policy {
    width: 100%;
    height: 500vh;
    background-color: rgb(30, 30, 30);
    text-align: center;
}

@media screen and (max-width: 1600px) {
	.navbar {
		height: 2%;
		padding: 75px 0;
		font-size: 3.2vw;
	}
	.logo {
		width: 15vw;
	}
}

@media screen and (max-width: 730px) {
	.navbar {
		height: 1%;
		padding: 45px 0;
		font-size: 3.2vw;
	}
	.logo {
		width: 12vw;
	}
}

@media screen and (max-height: 1081xp) {
	.navbar {
		height: 15vw;
		padding: 75px 0;
		font-size: 3.2vw;
	}
	.logo {
		width: 15vw;
	}
}