/*-----------------------------------------------------------------------------------

    Projekt: CSS - markuscremer.de
    Theme URI: https://markuscremer.de/style.css
    Description: Styles für die Website
    Author: Markus Cremer
    Author URI: https://poi-online.de
    Version: 1.0
    Date: 08.12.2021

-----------------------------------------------------------------------------------*/

/*---------------- TOPPER, BODY & FOOTER ----------------*/

.topper{
	font-size: 14px;
	height: 30px;
	line-height:30px;
	background: #333333;
	color: #ffffff;
}

html, body{
	height: 100%;
}

body{
	display: flex;
  flex-direction: column;
}

.content {
  flex: 1 0 auto;
}

.footer{
	font-size: 14px;
	background: #333333;
	color: #ffffff;
	margin-top:40px;
	padding-bottom:30px;
	padding-top:30px;
	width: 100%
	flex-shrink: 0;
}

a{
	color: #ffffff;
}

a:hover{
	color: #cccccc;
	text-decoration:underline;
}

a:visited{
	color: #ffffff;
	text-decoration:underline;
}

a.dark{
	color: #666666;
}

/*---------------- FONTS ----------------*/

p {
	font-family: 'Roboto Condensed', sans-serif;
	color: #666666;
	font-size: 20px;
}

p.serif{
	font-family: 'Gentium Basic', serif;
	color: #666666;
	font-size: 24px;
	font-weight: 400;
	font-style: italic;
}

p.comfort{
	font-family: 'Comforter Brush', cursive;
	color: #666666;
	font-size: 24px;
	font-weight: 400;
	/*font-style: italic;*/
}

/*---------------- ÜBERSCHRIFTEN ----------------*/

h1{
	font-family: 'Comforter Brush', cursive;
	font-size: 36px;
	color: #000000;
}

h2{
	font-family: 'Comforter Brush', cursive;
	font-size: 24px;
	color: #000000;
}

h3{
	font-family: 'Comforter Brush', cursive;
	font-size: 20px;
	color: #000000;
}

/*---------------- MARGINS 10/20/30/40/50/60/80/100 ----------------*/

.mt-10 {
    margin-top: 10px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-60 {
    margin-top: 60px;
}

.mt-80 {
    margin-top: 80px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-80 {
    margin-bottom: 80px;
}

.mr-10 {
    margin-right: 10px;
}

.mr-20 {
    margin-right: 20px;
}

.mr-30 {
    margin-right: 30px;
}

.mr-40 {
    margin-right: 40px;
}

.mr-50 {
    margin-right: 50px;
}

.mr-60 {
    margin-right: 60px;
}

.mr-80 {
    margin-right: 80px;
}

.ml-10 {
    margin-left: 10px;
}

.ml-20 {
    margin-left: 20px;
}

.ml-30 {
    margin-left: 30px;
}

.ml-40 {
    margin-left: 40px;
}

.ml-50 {
    margin-left: 50px;
}

.ml-60 {
    margin-left: 60px;
}

.ml-80 {
    margin-left: 80px;
}


/*---------------- PADDINGS 10/20/30 ----------------*/

.pt-10 {
    padding-top: 10px;
}

.pt-20 {
    padding-top: 20px;
}

.pt-30 {
    padding-top: 30px;
}

.pb-10 {
    padding-bottom: 10px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pr-10 {
    padding-right: 10px;
}

.pr-20 {
    padding-right: 20px;
}

.pr-30 {
    padding-right: 30px;
}

.pl-10 {
    padding-left: 10px;
}

.pl-20 {
    padding-left: 20px;
}

.pl-30 {
    padding-left: 30px;
}


/*---------------- FORM Control ----------------*/

.button {
  padding: 6px 12px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 12px;
  border-radius: 4px;
  transition-duration: 0.4s;
  cursor:pointer;
  margin-top: 5px;
}

.button:hover {
  background-color: #eeeeee;
  color: #000000 !important;
}

.send {
	background-color: #4CAF50;
  border: none;
  color: #ffffff !important;
}

.trash {
	background-color: #FF0000;
  border: none;
  color: #ffffff !important;
}

.edit {
	background-color: #ffffff;
  border: 1px solid #000000;
}


.btn-mac {
  display: inline-block;
  background-color: #669966;
  border-color: #669966;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  border-top-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent;
  padding: .375rem .75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: .25rem;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.btn-mac:hover {
    color: #fff;
    background-color: #669966;
    border-color: #003300;
}
