* {box-sizing: border-box;}

body { 
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

.header {
  overflow: hidden;
  background-color: #f1f1f1;
  padding: 20px 10px;
  background-image: linear-gradient(indigo, violet, white);
}
/*
.header a {
  float: left;
  color: black;
  text-align: center;
  /*padding: 12px;*/
  /*text-decoration: none;
  font-size: 18px; 
  /*line-height: 25px;*/
  /*border-radius: 4px;*/
}
*/
.header a.logo {
  font-size: 25px;
  font-weight: bold;
}

.header h1 {
  float: left;
  color: black;
  text-align: center;
  padding: 12px;
  text-decoration: none;
  font-size: 25px; 
  line-height: 25px;
  border-radius: 4px;
 /*font-family: 'Arizonia';*/
}

.header h1.logo {
  font-size: 32px;
  font-weight: bold;
}
/*
.header a:hover {
  background-color: #ddd;
  color: black;
}
*/
.header a.active {
  background-color: dodgerblue;
  color: white;
}

.header-right {
  float: right;
}

@media screen and (max-width: 800px) {
  .header a {
    float: none;
    display: block;
    text-align: left;
	font-size: 24px;
  }
  
  .header-right {
    float: right;
  }
}
.button {
  background-color: #04AA6D; /* Green */
  border: none;
  color: white;
  padding: 10px 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  transition-duration: 0.4s;
  cursor: pointer;
}

.button1 {
  background-color: white; 
  color: black; 
  border: 2px solid #04AA6D;
  background-image: linear-gradient(red,red, blue, white, white);
}

.button1:hover {
  background-color: #04AA6D;
  color: white;
  background-image: linear-gradient(red, white);
}

.button2 {
  background-color: white; 
  color: black; 
  border: 2px solid #008CBA;
  background-image: linear-gradient(red,red, blue, white, white);
}

.button2:hover {
  background-color: #008CBA;
  color: white;
  background-image: linear-gradient(blue, white);
}

.button3 {
  background-color: white; 
  color: black; 
  border: 2px solid #f44336;
  background-image: linear-gradient(red,  white,  green);
}

.button3:hover {
  background-color: #f44336;
  color: white;
  background-image: linear-gradient(green, white);
}

.responsive1 {
  float: left;
  width: 100%;
  max-width: 200px;
  height: auto;
  box-shadow: 10px 10px 5px #aaaaaa;
}

.topnav {
  overflow: hidden;
  /*background-color: #333;*/
  background-color: indigo;
}

.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.active {
  background-color: #04AA6D;
  color: white;
}

.topnav a.right {
    float: right;
}

.topnav .icon {
  display: none;
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 17px;    
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.topnav a:hover, .dropdown:hover .dropbtn {
  background-color: #555;
  color: white;
}

.dropdown-content a:hover {
  background-color: #ddd;
  color: black;
}

.dropdown:hover .dropdown-content {
  display: block;
}

@media screen and (max-width: 600px) {
  .topnav a:not(:first-child), .dropdown .dropbtn {
    display: none;
  }
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  .topnav.responsive .dropdown {float: none;}
  .topnav.responsive .dropdown-content {position: relative;}
  .topnav.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
  }
}


/* Create three unequal columns that floats next to each other */
.column {
  float: left;
  padding: 20px;
}

/* Left and right column */
.column.side {
  width: 30%;
  font-size: 18px;
}

/* Middle column */
.column.middle {
  width: 70%;
  font-size: 18px;
}

.column.middle p {
  text-align: justify;
}

/* Clear floats after the columns */
.row::after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column.side, .column.middle {
    width: 100%;
  }
}

/* Style the footer */
.footer {
  background-color: #f1f1f1;
  padding: 10px;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
}

div.gallery {
  border: 1px solid #ccc;
}

div.gallery:hover {
  border: 1px solid #777;
}

div.gallery img {
  width: 100%;
  height: auto;
}

div.desc {
  padding: 15px;
  text-align: center;
}

.responsive2 {
  padding: 0 6px;
  float: left;
  width: 100%;
}

@media only screen and (max-width: 700px) {
  .responsive2 {
    width: 49.99999%;
    margin: 6px 0;
  }
}

@media only screen and (max-width: 500px) {
  .responsive2 {
    width: 100%;
  }
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}
/*kék*/
.info {
    background-color: #e7f3fe;
    border-left: 6px solid #2196F3;
	 padding: 4px;
	 font-size: 20px;
	 line-height: 1.6;
}
/*piros*/
.danger {
    background-color: #ffdddd;
    border-left: 6px solid #f44336;
	padding: 4px;
}
/*zöld*/
.success {
    background-color: #ddffdd;
    border-left: 6px solid #4CAF50;
	padding: 4px;
	
}
/*sárga*/
.warning {
    background-color: #ffffcc;
    border-left: 6px solid #ffeb3b;
	padding: 4px;
}	
/*lila*/
.extra {
	background-color:#ffc8ff;
    border-left: 6px solid purple;
	padding: 4px;
}	


