* {box-sizing: border-box}
body {
	 margin: 0;
	 padding: 0;
}

.topnav {
  overflow: hidden;
  background-color: #49b293;
}

.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.topnav a:hover {
  background-color: #49b293;
  color: #666666;
}

.topnav a.active {
  background-color: #49b293;
  color: white;
}

.topnav .icon {
  display: none;
}

@media screen and (max-width: 600px) {
  .topnav a:not(:first-child) {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;
  }
}

.responsive {
     width: 100%;
     height: auto;
     margin-top: 0px;
}

.post-content{
	 background-color: #f3f3f3;
	 padding: 10px;
	 margin: 15px;
}

.post-content h1{
     font-size: 20px;
     text-align: center;
}

.post-content h2{
     font-size: 15px;
     text-align: center;
}

.post-content h3{
     font-size: 15px;
     text-align: center;
     margin-top: 30px;
}

.post-content p {
     margin-top: 30px;
     text-align: center;
     font-size: 15px;
     margin-left: 10px;
     margin-right: 10px;
}

.post-content p span{
     font-style: italic;
}

.section-title {
background-color: #f3f3f3;
padding:10px;
margin: 15px;

}

.section-title h1 {
font-size: 16px;
text-transform: uppercase;
color: #333333;
}

.section-title h2 {
font-size: 12px;
color: #333333;
}

.section-title a {
color: #333333;
text-decoration: none;
}

.row {
 margin: 15px;
}

/* Add padding BETWEEN each column */
.row,
.row > .column {
  padding: 8px;
}

/* Create four equal columns that floats next to each other */
.column {
  float: left;
  width: 25%;
}

/* Clear floats after rows */ 
.row:after {
  content: "";
  display: table;
  clear: both;
}

.row2 {
  display: flex;
}

/* Create three equal columns that sits next to each other */
.column2 {
  flex: 33.33%;
  padding: 5px;
}

.content {
  background-color: #f1f1f1;
  padding: 10px;
}

.content h3 {
  color: #333333;
  font-size: 15px;
}

.content p {
  color: #333333;
  font-size: 12px;
}

.content a {
  text-decoration: none;
}

.content a:hover {
  text-decoration: underline;
}


/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 900px) {
  .column {
    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 {
    width: 100%;
  }
}

.container1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.column3 {
  padding: 1rem;
  border-radius: 8px;
  background-color: #ffffff;
}

@media (max-width: 1024px) {
  .container1 {
    grid-template-columns: 1fr;
  }
}

.embed-container { 
    position: relative; 
    padding-bottom: 56.25%; 
    height: 0; 
    overflow: hidden; 
    max-width: 100%; 
} 

.embed-container iframe, .embed-container object, .embed-container embed { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
}

.footer {
background-color: #49b293;
padding:10px;
margin-top: 10px;
text-align: center;

}

.column3 a {
	background-color: #000000;
	color: #ffffff;
	padding: 15px;
	text-decoration: none;
	border-radius: 20px;
}

.cc a {
	background-color: #f1f1f1;
	color: #000000;
	padding: 2px;
	text-decoration: none;
	border-radius: 2px;
}

.footer p {
font-size: 12px;	
color: #ffffff;	
}

.footer a {
color: #ffffff;
}