
/* spellcastyr style sheet */


/* good light grey color */
/* rgb(245, 245, 245) */



/* this is for stacking links vertically */

/* a {
    display: block;
} */


/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

/* INDEX AND ADDITIONAL PAGES BASE STYLING =================== */

/* body styling ============================================== */

body {
    background-color: rgb(245, 245, 245); 
    margin: 0;
}


.link_title {
    text-decoration: none; 
    font-family: monospace; 
    font-size: 50px; 
    letter-spacing: 15px; 
}



/* container styling ========================================= */

.container {
    width: 980px; 
    margin: 0 auto;
    background-color: white; 
    box-shadow: 1px 3px 13px 5px;
}


h1 {
    margin: 0px; 
    color: #080cf36a; 
    font-size: 24px; 
    font-family: monospace; 
    font-weight: normal;
}


h2 {
    color: #3b7687;
    font-size: 15px; 
    margin: 20px 0 5px 0;
}



/* header styling =============================================*/

.header {
    padding: 50px 90px; 
    text-align: center;
    /* border:2px solid black; */
    /* font-family: monospace; 
    font-size: 50px; 
    letter-spacing: 15px; */
}



/* menu styling ==============================================*/

.menu {
    background-color: #3b7687; 
    padding: 6px 6px 6px 40px;
}


.menu a {
    color: #c5d6db;
    font-family: Arial, Helvetica, sans-serif; 
    text-decoration: none;
    /* text-align: center; */
    font-size: 18px;
}


.menu a:hover {
    color: #ecf2f3;
}



/* side bar styling ======================================== */

aside {
    float: left; 
    width: 120px; 
    padding: 20px 30px 40px 40px;
}


/* aside h1 {
    color: black;
} */



/* article styling ========================================= */

.main {
    margin: 0 0 0 188px;
    /* float: right; */
    padding: 15px 40px 30px 0px; 
    text-align: justify; 
    color: #444; 
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 
    'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 15px; 
    line-height: 20px; 
}


.main a:hover {
    color: #444;
}


#home_image img {
    width: 100%;
}



/* footer styling ========================================= */

footer {
    padding: 6px 40px 10px 40px;
    text-align: right; 
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    background-color: #dfdede; 
    color: #444444; 
    font-size: 11px;
}


footer a {
    text-decoration: none; 
    color: #444
}


footer a:hover {
    color: #b6a5a5;
}


.separator {
    color: white; 
}




/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

/* ABOUT PAGE STYLING ========================================= */

#about_page #home_image img {
    width: 70%; 
    float: left;
    margin-bottom: 30px;
}


#about_page #profile_info {
    float: right; 
    width: 25%; 
    margin: 5px;
}


#about_page .description {
    clear: both;
}




/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

/* CONTACT PAGE STYLING ========================================= */

/* forms */

#contact #form {
    width: 600px;
    border: 2px solid #3b7687; 
    border-radius: 5px;
    padding: 10px 15px 10px 10px;
    margin: 10px 20px 10px 200px; 
    box-shadow: 1px 3px 13px 5px;
}


#contact .page_heading {
    text-align: left;
    margin-bottom: 20px; 
    margin-top: 20px;
}


textarea {
    width: 600px;
    height: 100px; 
    border-radius: 5px; 
    background-color: #f0efef
}


#contact #form p {
    font-family: monospace; 
    color: #080cf36a; 
    font-size: 20px;
    
}


#contact #form input {
    width: 100%; 
    height: 25px;
    border-radius: 5px; 
    background-color: #f0efef;
}


#contact #form #submit {
    background-color: #fefbfb;
    width: 200px;
    height: 30px; 
    color: #080cf36a; 
    font-family: monospace; 
    font-size: 18px; 
    font-weight: bold; 
}



