html, body {
    height: 100%;
    margin: 0;
}

body {
    background-image: url('images/bg.jpg');
    background-repeat: repeat;
    color: #2a3a4f;
}

#navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 40px 30px;
    margin: -50px auto;
    width: 70%;
    background: linear-gradient(135deg, #d0f0ff 0%, #b0dfff 100%);
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0, 80, 120, 0.3), inset 0 0 20px rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(6px);
    transition: all 0.4s ease;
    position: relative;
}

#navigation A:link,
#navigation A:visited {
    position: relative;
    text-decoration: none;
    color: #104e70;
    font-family: 'Alumni Sans Pinstripe', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 26px;
    padding: 12px 24px;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: linear-gradient(to right, #ffffff66, #ffffff22);
    box-shadow: inset 0 0 5px rgba(255, 255, 255, 0.4);
}

#navigation A:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 6px;
    width: 0%;
    height: 3px;
    background: linear-gradient(to right, #6db1dd, #4db8d6);
    transition: width 0.4s ease-in-out;
    border-radius: 2px;
}

#navigation A:hover::after {
    width: 100%;
}

#navigation A:hover {
    color: #ffffff;
    background: linear-gradient(to right, #6db1dd, #4db8d6);
    box-shadow: 0 5px 15px rgba(109, 177, 221, 0.4);
    transform: translateY(-2px);
}

#navigation A:active {
    transform: scale(0.97);
    background: linear-gradient(to right, #5ca3c6, #4095b3);
}


#header {
    background-image: url('images/head.jpg');
    background-repeat: no-repeat;
    background-position: center;
    height: 531px;
    width: 100%;
    margin-top: -5px;
}

a:link, a:visited {
    color: #3686a0;
    font-size: 18px;
    text-decoration: none;
    font-family: 'Alumni Sans Pinstripe', sans-serif;
    font-weight: 600;
    transition: color 0.3s ease, border-bottom 0.3s ease;
    border-bottom: 1px solid transparent;
}

a:hover {
    color: #4db8d6;
    border-bottom: 1px solid #88cfea;
    text-shadow: 0 0 5px rgba(100, 180, 230, 0.2);
}

a:active {
    font-size: 18px;
    color: #1d5f74;
    transform: scale(0.98);
}

i, em {
    color: #2c546b;
    font-style: italic;
    font-family: 'Georgia', serif;
    letter-spacing: 0.5px;
    background: linear-gradient(to right, #d0eaf4, #ecfaff);
    padding: 2px 4px;
    border-radius: 4px;
}

b, strong {
    color: #0f2c3d;
    font-weight: bold;
    font-family: 'Tahoma', sans-serif;
    background-color: #c0e5f4;
    padding: 2px 6px;
    border-radius: 3px;
    box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.1);
}

#content {
    margin: 70px auto;
    position: relative;
    width: 70%;
}

.contentx {
    margin: 0 0 50px 0;
    padding: 25px;
    font-size: 13px;
    font-family: 'Libre Baskerville', serif;
    font-weight: 500!important;
    text-align: justify;
    color: #3f6173;
    line-height: 25px;
    letter-spacing: 2px;
    border-radius: 30px;
    background-color: rgba(230, 250, 255, 0.6);
}

blockquote {
    font-family: 'Georgia', serif;
    font-size: 20px;
    color: #355f72;
    background: linear-gradient(to right, #e0f7ff, #cdeefa);
    padding: 20px 30px;
    margin: 20px auto;
    border-left: 6px solid #6db1dd;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(50, 100, 150, 0.3);
    max-width: 800px;
}

contentx textarea,
input,
select {
    width: 100%;
    max-width: 600px;
    padding: 12px 16px;
    margin: 10px 0;
    font-family: 'Tahoma', sans-serif;
    font-size: 16px;
    color: #2a3a4f;
    background-color: #e7f5fb;
    border: 2px solid #a3d7ec;
    border-radius: 8px;
    box-shadow: inset 0 0 5px rgba(109, 177, 221, 0.3);
    transition: all 0.3s ease-in-out;
}

contentx textarea:focus,
input:focus,
select:focus {
    outline: none;
    border-color: #6db1dd;
    box-shadow: 0 0 10px rgba(109, 177, 221, 0.5);
    background-color: #ffffff;
}

h1 {
    font-family: 'Alumni Sans Pinstripe', sans-serif;
    font-size: 64px;
    color: #2a3a4f;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 5px rgba(0, 60, 100, 0.3);
    margin-bottom: 20px;
    border-bottom: 3px solid #88cfea;
    padding-bottom: 10px;
}

#footer {
    font-family: 'Tahoma', sans-serif;
    font-size: 14px;
    height: 100px;
    color: #4c6b7a;
    text-align: center;
    padding: 40px 20px 20px;
    margin-top: 60px;
    opacity: 0.8;
    letter-spacing: 0.5px;
    line-height: 1.6;
}

#footer a {
    color: #3686a0;
    text-decoration: none;
    border-bottom: 1px dotted #6db1dd;
    transition: color 0.3s ease, border-bottom 0.3s ease;
}

#footer a:hover {
    color: #4db8d6;
    border-bottom: 1px solid #4db8d6;
}
