@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap");

* {
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
}

body {
	font-family: "Montserrat", sans-serif;
}

:root {
	/*--white: #EEEEEE;
	--black: #222831;*/
	--grey: #393E46;
	--cyan: #5caed4;
	--purple: #566fb2;
	--purple-opacity: #566fb288;
	--white-opacity: #FFFFFF88;
	--text-shadow-color: #1d4b5777;
	--shadow-small: 0px 0px 5px rgba(57, 62, 70, 0.5);
	--shadow-big: 0px 0px 15px rgba(57, 62, 70, 0.5);
	--bg-grey: #818a98;
	--container-bottom-grey: rgba(80,80,80,0.1); 

	--orange-light:rgb(224, 158, 43);
	--green-aqua: rgb(17, 197, 158);
	--light-blue:rgb(43, 134, 224);


	--black: black;
	--white: white;
	--gray: rgba(128, 128, 128, 0.625);
	--section: white;
}

body.dark {
	--black: rgb(255, 255, 255);
	--white: rgb(0, 0, 0);
	--gray: rgba(128, 128, 128, 0.625);
	--section: rgb(37, 37, 37);
}

main {
	display: flex;
}

section {
	flex: 1;
	min-height: 100vh;
	position: relative;
	background-color: var(--section);
}

.content-page {
	display: flex;
	width: 100%;
	justify-content: center;
	align-items: center;
	padding: 0px;
	margin: 0px;
}

h1 {
	color: white;
	text-align: center;
	padding: 10px;
	text-shadow: 0px 0px 20px #1d4b5777;
}

.navbar-brand {
	font-size: 25px;
}

img {
	border-radius: 10%;
}

.navbar-light .navbar-nav .nav-link.active .nav-link {
	font-weight: bold;
	color: var(--cyan);
}

.footer-basic ul {
	padding: 0;
	list-style: none;
	text-align: center;
	font-size: 18px;
	line-height: 1.6;
	margin-bottom: 0;
	padding-top: 20px;
}

.footer-basic li {
	padding: 0 10px;
}

.footer-basic ul a {
	color: inherit;
	text-decoration: none;
	opacity: 0.8;
}

.footer-basic ul a:hover {
	opacity: 1;
}

.footer-basic .social {
	text-align: center;
	padding-bottom: 25px;
}

.footer-basic .social>a {
	font-size: 24px;
	width: 40px;
	height: 40px;
	line-height: 40px;
	display: inline-block;
	text-align: center;
	border-radius: 50%;
	border: 1px solid #ccc;
	margin: 0 8px;
	color: inherit;
	opacity: 0.75;
}

.footer-basic .social>a:hover {
	opacity: 0.9;
}

.footer-basic .copyright {
	padding-top: 10px;
	text-align: center;
	font-size: 13px;
	color: #aaa;
	margin-bottom: 0;
}



/*** SCROLLBAR **********************************************************************************************/
::-webkit-scrollbar {
	width: 12px;
}

@media screen and (max-width: 500px) {
	::-webkit-scrollbar {
		width: 12px;
	}
}

::-webkit-scrollbar-track {
	background: #f1f1f1;
	border-radius: 15px;
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
}

::-webkit-scrollbar-thumb {
	background: #888;
	border-radius: 15px;
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
}

::-webkit-scrollbar-thumb:hover {
	background: #555;
}

/*************************************************************************************************/




.page-content {
	width: 80%;
}


.background-page {
	min-height: calc(100vh - 200px);
	background-image: linear-gradient(to bottom right, var(--cyan), var(--purple));
	width: 100%;
	padding-top: 20px;
	padding-bottom: 20px;
}







.task-card-presentation {
	box-shadow: var(--shadow-small);
	border-radius: 30px;
	margin: 30px;
	cursor: pointer;
	padding: 10px;
	transition: transform .3s, box-shadow .3s;
	background-color: var(--purple-opacity);
	background: linear-gradient(+135deg, var(--purple-opacity), var(--purple-opacity) 92.9%, var(--white-opacity) 93%, var(--white-opacity));
}

.task-card-presentation:hover {
	transform: scale(1.05, 1.05);
	-webkit-transform: scale(1.05, 1.05);
	-moz-transform: scale(1.05, 1.05);
	box-shadow: var(--shadow-big);
}

.task-card-presentation .task-title {
	border-radius: 20px;
	color: white;
	text-align: center;
	font-size: 35px;
	font-weight: bold;
	text-shadow: 0px 0px 20px #1d4b5777;
}

.task-card-presentation .task-description {
	color: white;
	text-align: center;
	font-size: 20px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.task-card-presentation .task-title-deadlines {
	text-align: center;
	color: white;
	text-align: center;
	font-size: 20px;
	font-weight: bold;


	box-shadow: var(--shadow-small);
	border-radius: 30px;
	margin-left: 20px;
	margin-right: 20px;

	padding: 10px;
	background-color: var(--grey);
}

.task-card-presentation .task-deadlines {
	margin-top: -10px;
	text-align: center;
	color: white;
	text-align: center;
	font-size: 20px;
}

