/*

   Title: Admin
   Author: QBIT
   Date: 16/06/2024

   File path: ../../../../uploads/

*/

/* Import fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&family=Quicksand&display=swap');

/* Global styles */
body,html {
	line-height: 150%;
}

body {
	color: #333;
	font-size: 1.0em; 
	font-family: 'Quicksand', sans-serif;
}

h1,h2,h3,h4,h5,h6 {
	line-height: 1.0;
	letter-spacing: -0.05em;
	font-size: 2.0em;
	font-family: 'Poppins', sans-serif; 
	color: #333;
	margin-bottom: 20px;
}

p {
  margin-bottom: 20px;
}

a {
  text-decoration: none;
}

/* Main styles */
#main {
	margin-top: 100px;
}

/* Button styles */
.btn {
    font-family: 'Poppins', sans-serif;
    display: inline-block;
    background: #99cc33;
    color: #333;
    padding: 10px 15px 10px 15px;
    transition: background 0.5s ease, color 0.5s ease;
}

.btn:hover {
    background: #333;
    color: #fff;
}

/* List styles */
.hr {
  border-bottom: solid 1px #555;
}

/* Media queries */
@media (max-width: 64em) {

  /* Global styles */
  h1,h2,h3,h4,h5,h6 {
      font-size: 1.4em;
  }

  /* Main styles */
  #main {
    margin-top: 70px;
  }

}