*
{
	box-sizing: border-box;
}

body
{
	margin: 20px;
	font-family: 'Architects Daughter', cursive;
	background: url("../img/James-Castle-.jpg") no-repeat center;  
	background-size: cover;
	position: relative;
}
.content
{
	padding:20px;
	border: none;
	margin: 20px;
	background-color: rgba(248, 248, 248, 0.719);
	border: 2px solid #ccc;
	height: 350px;
}
/* Style the header */
.header 
{
	margin: 0;
	display: inline;
	text-align: center;
	clear: both;
}	
/* Create three unequal columns that floats next to each other */
 .column 
{
    float: left;
    padding: 5px;
	height: auto;
}

/* Left and right column */
.column.side 
{
    width: 20%;
	background-color:rgba(62, 117, 161, 0.815) ;
	background-image: linear-gradient(to right, rgba(119, 180, 230, 0.815) , rgb(167, 217, 250));
	border: black 6px double;
	border-radius: 8px;
}
  
  /* Middle column */
.column.middle 
{
    width: 75%;
	height: auto;
	padding-right: 5px;
}
  
  /* Clear floats after the columns */
.row:after 
{
    content: "";
    display: table;
    clear: both;

} 

/* Navigation bar */
.topnav 
{
    overflow: hidden;
    background-color: #998585;
}

.topnav a 
{
    float: left;
    display: block;
    color: black;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
}

.topnav a:hover 
{
    background-color: rgb(240, 237, 200);
    color: black;
}

.topnav a.active 
{
    background-color: #349ff7;
    color: white;
}

.topnav .search-container 
{
    float: right;
}

.topnav input[type=text] 
{
    padding: 6px;
    margin-top: 8px;
    font-size: 17px;
    border: none;
}

.topnav .search-container button 
{
    float: right;
    padding: 6px 10px;
    margin-top: 8px;
    margin-right: 16px;
    background: #ddd;
    font-size: 17px;
    border: none;
    cursor: pointer;
}

.topnav .search-container button:hover 
{
    background: #ccc;
}

@media screen and (max-width: 600px) 
{
    .topnav .search-container 
    {
        float: none;
    }

    .topnav a, .topnav input[type=text], .topnav .search-container button 
    {
        float: none;
        display: block;
        text-align: left;
        width: 100%;
        margin: 0;
        padding: 14px;
	}

    .topnav input[type=text] 
    {
        border: 1px solid #ccc;  
    }
}		

/* Forum links */
.forum
{
	list-style-type: square;
}

/* Website title */
.title 
{
	font-family: 'Comforter Brush', cursive;
	font-size: 82px;
	color: rgb(83, 177, 214);
	letter-spacing: 10px;
	text-align: center;
}

#myDIV 
{
	animation: mymove 5s infinite;
}
@keyframes mymove 
{
	50% {text-shadow: 4px 6px 9px black;}
}


/* Body attributes */

h2
{
	text-align: justify;
	display: block;
	font-size: 20px;
	font-family: 'Architects Daughter', cursive;
	font-weight: bold;
	color: #000000;
	letter-spacing: 3px;
}

h3
{
	text-align: center;
	font-size: 20px;
	font-family: 'Shadows Into Light', cursive;
	font-weight: bold;
	color: black;
	letter-spacing: 3px;
}

p
{
	text-align: justify;
	font-size: 16px;
	font-family: Verdana, Geneva, Tahoma, sans-serif;
	color: black;
	letter-spacing: 3px;
}

footer
{
	font-size: 17px;
	font-family: 'Shadows Into Light', cursive;
	color: ghostwhite;
	letter-spacing: 3px;
    padding: 10px;
	text-align: center;
}