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

html {
  scroll-behavior: smooth;
}

main{
	height: 100vh;
	width: 100%;
	background: #f2eeee;
	display: flex;
	align-items: center;
	justify-content: center;
}

.glass{
	height: 90vh;
	width: 95%;
	background: #fff;
	margin: auto;
	backdrop-filter: blur(5px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
	border-radius: 25px;
	border: 1px solid rgba(255,255,255,0.3);
	position: relative;
	display: flex;
}

.notification {
    height: 85vh;
	width: 47%;
	background: #fff;
	margin: auto;
	backdrop-filter: blur(5px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
	border-radius: 25px;
	border: 1px solid rgba(255,255,255,0.3);
	padding: 2%;
	display: flex;
	flex-direction: column;
	overflow-y: scroll;
}

.profiles {
    height: 85vh;
	width: 47%;
	background: #fff;
	margin: auto;
	backdrop-filter: blur(5px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
	border-radius: 25px;
	border: 1px solid rgba(255,255,255,0.3);
	padding: 1% 2%;
	display: flex;
	flex-direction: column;
	overflow-y: scroll;
}

.text {
	font-family: Outfit;
	font-weight: 600;
	font-size: 35px;
}

.notifications {
	height: 10vh;
	width: 100%;
	background: #fff;
	margin: auto;
	backdrop-filter: blur(5px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
	border-radius: 25px;
	border: 1px solid rgba(255,255,255,0.3);
	padding: 5% 2%;
}

.drivers {
	height: 10vh;
	width: 100%;
	background: #fff;
	margin: auto;
	backdrop-filter: blur(5px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
	border-radius: 25px;
	border: 1px solid rgba(255,255,255,0.3);
	padding: 2%;
	display: flex;
	justify-content: space-between;
}

#profile-photo {
	width: 65px;
	height: 65px;
	border-radius: 50%;
}

.noti {
	color: #7E7E7E;
	font-family: Outfit;
	font-size: 25px;
}

p {
	font-family: Outfit;
	font-weight: 400;
	font-size: 18px;
}

.first {
	display: flex;
	justify-content: space-around;
}

#show-btn {
	width: 200px;
	height: 45px;
	background-color: #4CAF50;
	outline: none;
	border: none;
	border-radius: 25px;
	color: #fff;
	cursor: pointer;
}

.second {
	display: flex;
	flex-direction: column;
	justify-content: space-around;
}

::-webkit-scrollbar {
	width: 15px;
}

::-webkit-scrollbar-track {
	padding: 2px;
}

::-webkit-scrollbar-thumb {
	background: #4CAF50;
	border-radius: 10px;
}

.main-title {
	position: fixed;
	width: 100%;
	margin: auto;
}

h1 {
	font-family: "Nunito Sans";
}