html, body {
    height: 100%;
    margin: 0;
    font-family: 'Libre Baskerville', serif;
    font-weight: 400;
    text-align: center;
    font-size: 13px;
    background: url(images/halloween.jpg) repeat fixed;
    color: #ccc;
}

.footer-spacer {
    height: 90px;
}

#navigation { opacity:0.7;
    width: 90%;
    margin: 90px auto 0;
    padding: 20px;
    text-align: center;
    font-family: 'Tahoma', sans-serif;
    font-weight: 700;
    background: #ffffff;
    border-radius: 30px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

#navigation a {
    display: inline-block;
    margin: 5px;
    padding: 15px 35px;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 700;
    font-family: 'Libre Baskerville', serif;
    color: #E51F36;
    background: transparent;
    border-radius: 25px;
    transition: all 0.3s ease;
}
#navigation a:hover {
    background: #E51F36;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(229, 31, 54, 0.4);
}

h1 {
    font-family: 'Bebas Neue', cursive;
    font-size: 26px;
    letter-spacing: 1px;
    color: #E51F1F;
    background: #000;
    padding: 10px 15px;
    display: inline-block;
    opacity: 0.9;
    transform: rotate(-1deg);
    box-shadow: 3px 3px 12px rgba(0,0,0,0.7);
}

#container {
    margin: 90px auto 140px auto;
    width: 70%;
    position: relative;
}

.contentx {opacity:0.7;
    margin: 0 0 50px 0;
    padding: 25px;
    font-size: 14px;
    font-weight: 500 !important;
    text-align: justify;
    line-height: 25px;
    letter-spacing: 1.5px;
    color: #222; 
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
}

.contentx a {
    color: #E51F36;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(229,31,54,0.4);
    transition: all 0.3s ease;
}
.contentx a:hover {
    color: #000;
    border-bottom-color: #000;
}

.contentx b,
.contentx i {
    color: #E51F36;
    font-weight: 600 !important;
    border-bottom: none;
}

.contentx blockquote {
    background: #f9f9f9;
    border-left: 10px solid #E51F1F;
    margin: 20px auto;
    padding: 32px 48px;
    max-width: 600px;
    font-size: 20px;
    line-height: 29px;
    font-style: italic;
    color: #444;
    border-radius: 6px;
    box-shadow: 1px 2px 6px rgba(0,0,0,0.08);
}

.contentx input,
.contentx textarea,
.contentx select {
    width: 50%;
    background: linear-gradient(145deg, #111, #000);
    border: 2px solid rgba(229, 31, 54, 0.6);
    padding: 10px 14px;
    color: #E51F1F;
    font-size: 14px;
    border-radius: 10px;
    outline: none;
    transition: all 0.3s ease;
    box-shadow: inset 2px 2px 5px rgba(0,0,0,0.6), 
                inset -2px -2px 5px rgba(255,255,255,0.05);
    margin: 8px 0;
    display: block;
}
.contentx input:hover,
.contentx textarea:hover,
.contentx select:hover {
    border-color: #E51F1F;
    box-shadow: inset 2px 2px 6px rgba(0,0,0,0.7),
                0 0 6px rgba(229, 31, 54, 0.4);
}

.contentx input:focus,
.contentx textarea:focus,
.contentx select:focus {
    border-color: #E51F1F;
    color: #fff;
    background: linear-gradient(145deg, #1a1a1a, #000);
    box-shadow: 0 0 12px rgba(229, 31, 54, 0.7), 
                inset 0 0 6px rgba(229, 31, 54, 0.4);
    transform: scale(1.02);
}

input, textarea, option, select {

    background-color: #E1C602;
}