#header {
    background-image: url('images/head.jpg'),url('images/bg1.jpg');
    background-repeat: no-repeat, repeat;
    background-position: right;
    height: 489px;
    width: 100%;
    position: relative;
    z-index: 0;
}

@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative&family=Libre+Baskerville&family=Noto+Sans+Runic&family=Alumni+Sans+Pinstripe&display=swap');

body {
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom right, #e9f5ff, #fffbe6);
    font-family: 'Tahoma', sans-serif;
    color: #003366;
}

#navigation {
    width: 100%;
    margin-top: -2px;
    padding: 38px 34px;
    background: linear-gradient(145deg, #cbe5ff, #fff8c9);
    border-bottom: 2px solid #8aa7d0; border-top: 3px solid #8aa7d0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    display: flex;
    justify-content: flex-end;
    gap: 16px;
    box-sizing: border-box;
}

#navigation a {
    padding: 18px 28px;
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase;
    color: #003366;
    background: linear-gradient(to bottom right, #e8f2ff, #fff8e5);
    border: 2px solid #b0c4de;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    box-shadow: 2px 2px 0 #b0b0b0;
}

#navigation a:hover {
    background: linear-gradient(to bottom right, #d9ebff, #fff5cc);
    color: #b00020;
    box-shadow: 2px 2px 0 #909090;
    transform: translateY(-1px);
}

#layout-container {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    box-sizing: border-box;
    padding-right: 60px;
    margin-top: 40px;
}

#content {
    width: 70%;
    margin: 0;
    padding-bottom: 10px;
    position: relative;
}

@media (max-width: 900px) {
    #layout-container {
        justify-content: center;
        padding-right: 0;
    }

    #content {
        width: 95%;
    }
}

.contentx {
    margin-bottom: 60px;
    padding: 35px;
    font-size: 17px;
    line-height: 1.75;
    letter-spacing: 0.8px;
    border-radius: 12px;
    background: linear-gradient(to bottom right, #f5fbff, #fffbe6);
    border: 2px solid #b0c4de;
    box-shadow: 3px 3px 0 #c0c0c0;
    position: relative;text-align: justify;
}

.contentx::before,
.contentx::after {
    content: "✸ ✸ ✸ ✸ ✸";
    font-family: 'Verdana', sans-serif;
    font-size: 46px;
    color: rgba(0, 51, 102, 0.1);
    position: absolute;
    letter-spacing: 10px;
}

.contentx::before {
    top: -20px;
    left: 20px;
}

.contentx::after {
    bottom: -20px;
    right: 20px;
}

blockquote {
    font-family: 'Georgia', serif;
    font-size: 22px;
    color: #002b5c;
    background: linear-gradient(145deg, #f0f8ff, #fffbe6);
    padding: 40px 50px;
    margin: 60px auto;
    border: 2px solid #a3c4e6;
    border-radius: 12px;
    box-shadow: 2px 2px 0 #b0b0b0;
    max-width: 900px;
    position: relative;
    line-height: 1.8;
    text-align: center;
}

blockquote::before,
blockquote::after {
    content: "★";
    font-size: 32px;
    color: rgba(0, 51, 102, 0.1);
    position: absolute;
}

blockquote::before {
    top: 10px;
    left: 20px;
}

blockquote::after {
    bottom: 10px;
    right: 20px;
}

textarea,
input,
select {
    width: 40%;
    max-width: 500px;
    padding: 14px 18px;
    margin: 16px 0;
    font-family: 'Tahoma', sans-serif;
    font-size: 16px;
    color: #003366;
    background: linear-gradient(145deg, #f6fbff, #fffde5);
    border: 2px solid #a7c1e4;
    border-radius: 6px;
    box-shadow: inset 2px 2px 0 #dcdcdc;
    transition: all 0.2s ease;
}

textarea:focus,
input:focus,
select:focus {
    outline: none;
    border-color: #3366cc;
    background-color: #ffffff;
    box-shadow: inset 1px 1px 0 #cccccc;
}

h1 {
    display: inline-block;
    padding: 19px 38px;
    font-family: 'Verdana', sans-serif;
    font-size: 22px;
    text-transform: uppercase;
    color: #003366;
    letter-spacing: 2px;
    background: linear-gradient(145deg, #f2f9ff, #fffde0);
    border: 2px solid #7aa5cc;
    border-radius: 10px;
    box-shadow: 2px 2px 0 #b0b0b0;
}

#footer {
    font-family: 'Tahoma', sans-serif;
    font-size: 16px;
    color: #003366;
    text-align: center;
    padding: 60px 25px 40px;
    margin-top: 100px;
    background: linear-gradient(to top, #fffbe6, #d4ebff);
    border-top: 2px solid #99badd;
    box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.1);
}

#footer a {
    color: #b00020;
    text-decoration: none;
    border-bottom: 1px dashed #b00020;
    transition: all 0.2s ease;
}

#footer a:hover {
    color: #003366;
    border-bottom: 1px solid #003366;
}

a {
    padding: 4px 8px;
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    color: #003366;
    background: linear-gradient(to bottom right, #e8f2ff, #fff8e5);
    border: 2px solid #b0c4de;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    box-shadow: 2px 2px 0 #b0b0b0;
}

a:hover {
    background: linear-gradient(to bottom right, #d9ebff, #fff5cc);
    border-color: #7aa5cc;
    color: #b00020;
    box-shadow: 2px 2px 0 #909090;
    transform: translateY(-1px);
}

i, em {
    color: #003366;
    font-style: italic;
    font-family: 'Georgia', serif;
    letter-spacing: 0.5px;
    background: #f0f8ff;
    padding: 4px 7px;
    border-radius: 4px;
    border: 1px solid #a3c4e6;
}

b, strong {
    color: #fff;
    font-weight: 800;
    font-family: 'Verdana', sans-serif;
    background-color: #b00020;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 1px 1px 0 #b0b0b0;
    transition: background-color 0.2s ease;
}

b:hover, strong:hover {
    background-color: #d02030;
}

/* table styles */
table {
    width: 100% !important;
    border-collapse: collapse;
    font-family: Verdana, Arial, sans-serif;
    font-size: 14px;
    border: 2px solid #9cc7df;
    background: #ffffff;
    box-shadow: 0 4px 0 0 #8cc3df;
}

table th {
    background: linear-gradient(180deg, #fff5ba 0%, #c9f7e0 50%, #bfe6ff 100%);
    padding: 12px;
    border: 1px solid #9cc7df;
    font-weight: bold;
}

table td {
    padding: 10px 12px;
    border: 1px solid #cfe8f4;
    background: #ffffff;
    word-break: break-word;
    overflow-wrap: anywhere;
}

table tr:nth-child(odd) td {
    background: #f7fcff;
}
table tr:nth-child(even) td {
    background: #fbfffd;
}

table tr:hover td {
    background: #fffef1;
}

table a {
    color: #0f6aa6;
    text-decoration: none;
    border-bottom: 1px dotted #0f6aa6;
}
table a:hover {
    text-decoration: underline;
}

table del {
    color: #6f8aa0;
    border-bottom: 1px dotted #6f8aa0;
    text-decoration: none;
}

/* 90s pastel Radio-Box */
fieldset.radio-90s {
    border: 2px solid #9cc7df;
    padding: 10px 14px;
    width: fit-content;
    background: linear-gradient(180deg, #eaf6ff 0%, #f7fff9 100%);
    border-radius: 6px;
    font-family: Verdana, Arial, sans-serif;
    font-size: 14px;
}

fieldset.radio-90s legend {
    padding: 0 6px;
    font-weight: bold;
    color: #1d2b3a;
}

fieldset.radio-90s label {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-right: 16px;
    cursor: pointer;
}

fieldset.radio-90s input[type="radio"] {
    cursor: pointer;
}
