html
{
width:100%;
background-color: #FFEEEE;
font-family: "Segoe Script", Arial, sans-serif;
font-size: 18px;
}

body
{
width:100%;
margin:0;
background-color: #FFEEEE;
}

a
{
  color: white;
  text-decoration:none;
}

a:hover
{
  color: white;
  font-weight:bold;
  font-size: 20px;
  text-decoration:none;
}

.navbar {
  background-color: red;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.navbar a {
  float: left;
  color: white;
  font-weight: bold;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 20px;
}

.navbar a:hover {
  background-color: white;
  color: red;
  font-weight: bold;
}

.icon {
	display: none;
}

.pcontainer
{
  padding: 10px 10px;
}

.banner {
	background-image: url('img/125hbanner.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
	height: 0;
	overflow: hidden;
	animation: drop 0.5s ease-in-out;
	animation-fill-mode: forwards;
}

.container {
	display: flex;
	flex-wrap: wrap;
	padding: 14px 16px;
}

.left {
    background-color:#EEE2E2;
    border-radius: 12px;
	flex-basis: 45%;
	padding: 6px 6px;
}

.right {
	flex-basis: 45%;
	padding: 6px 6px;
}

.button {
  background-color: red; /* Green */
  border: none;
  color: white;
  padding: 8px 16px;
  border-radius: 12px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  transition-duration: 0.4s;
  cursor: pointer;
}

.btn1
{
  background-color: white; 
  color: black; 
  border: 2px solid #f44336;
}

.btn1:hover {
  background-color: #f44336;
  color: white;
}

.footer
{
  background-color: red;
  overflow: hidden;
  padding: 14px 16px;
  text-align:center;
}

.article
{
    width:30%;
    padding: 10px 10px;
}

@keyframes drop {
	from { 
		height: 0;
	}
	to { 
		height: 125px;
	}
}

.row {
  display: flex;
  flex-wrap: wrap;
  padding: 0 4px;
}

/* Create four equal columns that sits next to each other */
.column {
  flex: auto;
  max-width: 24%;
  padding: 0 6px;
}

.column img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
}

.gallnk
{
  color: red;
  text-decoration:none;
}


input[type=text] {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  box-sizing: border-box;
}

input[type=submit] {
  padding: 12px 20px;
  margin: 8px 0;
  box-sizing: border-box;
}

textarea {
  width: 100%;
  height: 150px;
  padding: 12px 20px;
  box-sizing: border-box;
  border: 2px solid #ccc;
  border-radius: 4px;
  background-color: #f8f8f8;
  resize: none;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
  .column {
    flex: 50%;
    max-width: 50%;
  }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    flex: 100%;
    max-width: 100%;
  }
}

@media screen and (max-width: 600px) {
	.navbar a:not(:first-child) {
		display: none;
	}

	.icon {
		display: block;
		position: absolute;
		top: 10px;
		right: 10px;
		margin-right: 16px;
		font-size: 22px;
		font-weight: bold;
	}

	.menu {
		display: none;
	}

	.menu a {
		display: block;
		background-color: red;
		color: #FFEEEE;
		font-weight: bold;
		padding: 14px 16px;
		text-decoration: none;
		font-size: 18px;
		border-top: 1px solid white;
	}

	.menu a:hover {
		background-color: #FFEEEE;
		color: red;
		font-weight: bold;
	}
		.container {
		flex-direction: column;
	}
	
	.left, .right {
		flex-basis: 100%;
	}
	
	.article
    {
    width:90%;
    padding: 10px 10px;
    }
}

@media screen and (min-width: 601px) {
	.icon {
		display: none;
	}
	.navbar a:not(:first-child) {
		display: block;
	}
	.menu {
		display: none;
	}
}
