* {
  box-sizing: border-box;
}

body {
  font-family: Arial;
  padding: 20px;
  /* background: #f1f1f1; */
    background: linear-gradient(
      160deg,
        
      #7FCDEC 0%,
      #F2C666 50%,
      #EDD9AE 100%
    );
}

/* Header/Blog Title 
.header {
  padding: 30px;
  font-size: 40px;
  text-align: center;
  background-color: #F8931F;
}
*/
/* Navigation */
header {
	width: 100%;
	height: 10%;
	background-color: #F8931F;
	border-bottom: 1px solid #F8931F;
}
.headerStyle {
	background-color: #F8931F;
	/*background-size: contain;*/
	width: 100%;
	height: 15%;
	display: inline-block;
}
.logo {
	color: #fff;
	font-weight: bold;
	text-align: undefined;
	width: 10%;
	float: left;
	margin-top: 15px;
	margin-left: 25px;
	letter-spacing: 4px;
}

header nav ul {
	list-style: none;
	float: right;
}
nav ul li {
	float: left;
	color: #FFFFFF;
	font-size: 14px;
	text-align: left;
	margin-right: 25px;
	letter-spacing: 2px;
	font-weight: bold;
	transition: all 0.3s linear;
}
ul li a {
	color: #FFFFFF;
	text-decoration: none;
}
ul li:hover a {
	color: #2C9AB7;
}

h1 {
  font-family: Adamina, Cambria, Times New Roman, serif;
  font-size: 36px;
  text-shadow: 2px 2px #f5f5f5;
}
h3 {
  font-family: Adamina, Cambria, Times New Roman, serif;
  font-size: 24px;
}

.hasBorder {
    display: table-cell;
    padding: 15px; 
    /*border-style: solid;
    border-width: 3px;
    border-color: #8C1036;*/
  margin: 0 auto;
}

/* Create two unequal columns that floats next to each other */
/* Left column */
.leftcolumn {
  float: left;
  width: 75%;
}

/* Right column */
.rightcolumn {
  float: right;
  width: 25%;
  padding-left: 20px;
}

/* Fake image */
.fakeimg {
  background-color: #F2C666;
  width: 100%;
  padding: 20px;
}

/* Add a card effect for articles */
.card {
  background-color: white;
  padding: 20px;
  margin-top: 20px;
  line-height: 1.5;   
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

.copyright {
	text-align: center;
	padding-top: 20px;
	color: #FFFFFF;
	text-transform: uppercase;
	font-weight: lighter;
	letter-spacing: 2px;
	border-top-width: 2px;
}
.inline-list li {
  display: inline-block;
  margin-right: 25px; /* Adjust spacing as needed */
  padding: 8px 12px;
  border-radius: 5px;
}

/* Footer  */
.footer {
  text-align: center;
  background: #ddd;
}



/* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 800px) {
  .leftcolumn, .rightcolumn {
    width: 100%;
    padding: 0;
  }
}