*:not(html, body, .projects) {
	overflow: hidden;
}

html {
	font-family: 'Dangrek', sans-serif;
	background-color: #a94d63;
	color: white;
	-ms-overflow-style: none;
	scrollbar-width: none;
	margin: none;
	font-size: 16px;
}

html::-webkit-scrollbar {
	display: none;
}

a {
	text-decoration: none;
	color: white;
	font-size: 16px;
}

body {
	width: 100%;
	margin: 0;
}

p {
	margin-top: 20px;
	margin-bottom: 10px;
}

.top-bar {
	background-color: #cc687f;
	color: white;
	height: 60px;
	width: 100%;
}

.top-bar div {
	display: flex;
	margin: 0 auto;
	width: 95%;
	height: 100%;
}

.top-bar div h1, .top-bar div a {
	display: inline-flex;
	color: white;
	align-items: center;
}

.top-bar div h1 {
	flex: 1;
	font-size: 24px;
	padding: 0;
	margin: 0;
	font-weight: bold;
}

.top-bar div a {
	padding: 0 20px;
	text-decoration: none;
	font-weight: bold;
	font-size: 20px;
}

.top-bar div a i {
	padding: 2px 8px 0 0;
}

.top-bar div a:hover {
	color: #a94d63;
}

.page-content {
	margin-left: 2.5%;
	margin-right: 2.5%;
}

.tab {
	background-color: #5c59ba;
	border-radius: 10px;
	margin-top: 15px;
	margin-left: 10px;
	margin-right: 10px;
	margin-bottom: 100px;
}

.tab button {
	background-color: inherit;
	color: inherit;
	float: left;
	border: none;
	outline: none;
	cursor: pointer;
	padding: 14px 16px;
	transition: 0.3s;
	font-size: 17px;
}

.tab button:hover {
	background-color: #7c7ac7;
}

.tab button.active {
	background-color: #6c69c0;
	transition: color 0.15s ease-in;
}

.tab-content {
	margin-left: 10px;
	margin-right: 10px;
	display: none;
	padding: 6px 12px;
	border-top: none;
}

.avatar {
	height: 140px;
	width: 140px;
	border-radius: 25%;
}

.title {
	font-size: 30px;
	font-weight: 700;
}

.subtitle {
	font-size: 25px;
	font-weight: 600;
}

.social-buttons {
	align-items: center;
	justify-content: center;
	text-align: center;
	height: 50px;
}

.social-button {
	display: inline-block;
	border-radius: 12.5px;
	text-align: center;
	height: 50px;
	width: 50px;
	background-color: #303030;
}

.social-button:hover {
	background-color: rgb(70, 70, 70) !important;
}

.social-button:nth-of-type(1) {
	margin-right: 7.5px;
}

.social-button:nth-of-type(2) {
	margin-left: 7.5px;
	margin-right: 7.5px;
}

.social-button:nth-of-type(3) {
	margin-left: 7.5px;
	margin-right: 7.5px;
}

.social-button:nth-of-type(4) {
	margin-left: 7.5px;
}

.social-icon {
	position: relative;
	top: calc(50% - 12.5px);
	color: #ffffff;
}

ion-icon {
	font-size: 25px;
}

.project {
	display: inline-block;
	border-radius: 25px;
	text-align: center;
	width: 250px;
	background-color: #5c59ba;
	margin-bottom: 20px;
}

.project p {
	margin-top: 20px;
	margin-bottom: 20px;
}

.project-header {
	height: 150px;
	width: 100%;
	background-color: #6c69c0;
}

.project-icon {
	margin: 10px 10px 10px 10px;
	height: calc(100% - 20px);
	width: calc(100% - 20px);
	border-radius: 25px;
}

.project-content {
	text-align: center;
}

.project-content p:nth-of-type(1) {
	margin-top: 15px;
}

.project-content p:nth-of-type(2) {
	margin-top: -10px;
	margin-bottom: 25px;
}

.project-title {
	font-size: 25px;
	font-weight: 600;
}

.project-text {
	font-size: 17.5px;
	font-weight: 400;
}

.project:nth-of-type(1) {
	margin-right: 10px;
}

.project:nth-of-type(2) {
	margin-left: 10px;
	margin-right: 10px;
}

.project:nth-of-type(3) {
	margin-left: 10px;
	
}

.project-button {
	text-decoration: none;
	color: white;
	font-size: 15px;
	font-weight: 700;
	display: inline-block;
	border-radius: 15px;
	text-align: center;
	padding-top: 15px;
	padding-bottom: 15px;
	padding-left: 20px;
	padding-right: 20px;
	background-color: #6c69c0;
	margin-bottom: 20px;
}

.project-button:hover {
	background-color: #7c7ac7;
}

@media only screen and (max-device-width: 480px) {
	.project {
		display: block;
	}
	.project:nth-of-type(1) {
		margin-right: 0px;
	}
	.project:nth-of-type(2) {
		margin-left: 0px;
	}
}