/* Mostly styling using Boostrap */

@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');

* {
    font-family: 'Poppins', sans-serif;
}

/* Scrollbar */

::-webkit-scrollbar{
    width: 10px;
    height: 5px;
}
  
::-webkit-scrollbar-track{
    box-shadow: inset 0 0 8px rgba(0,0,0,0.2);
}

::-webkit-scrollbar-thumb{
    background: #3090d4;
    border-radius: 10px;
}

.cards:hover {
    box-shadow: 20px 20px 100px -50px #000;
    transition: 0.3s;
}

.btn {
    background-color: #3090d4;
    transition: 300ms ease-in;
}

.btn:hover {
    background-color: #186398;
}

a {
    text-decoration: none;
    color: white;
    /* text-: none; */
}

a:hover {
    text-decoration: none;
    color: white;
}

.card-body {
    /* margin: 0; */
    padding: 10px 2px;
}

/* Responsively Using Boostrap */

.viewall {
	justify-content: center;
	align-items: center;
	text-align: center;
}

.viewDetailButton {
    text-decoration: none;
	font-size: 1.35em;
	color: white;
	text-decoration: none;
	letter-spacing: 3px;
	background: #3090d4;
	display: inline-block;
	padding: 11px 32px;
	margin-top: 20px;
	border: solid 4.5px #efefff;
	transition-duration: 500ms;
	font-weight: 550;
    margin-bottom: 50px;
}

.viewDetailButton:hover {
    text-decoration: none;
	letter-spacing: 7px;
	transform: translateY(-5px);
}