@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative&family=Libre+Baskerville&family=Noto+Sans+Runic&family=Alumni+Sans+Pinstripe&display=swap');

body {
    background-color: #34244D;
    color: #f5f5f5;
    font-family: 'Libre Baskerville', serif;
    margin: 0;
    padding: 0;
}

#navigation {
    width: 70%;
    margin-top: 20px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 40px;
    font-family: 'Cinzel Decorative', serif;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

#navigation a {
    padding: 10px 20px;
    font-size: 16px;
    text-transform: uppercase;
    color: #ffffff;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 25px;
    transition: all 0.3s ease-in-out;
    background-color: transparent;
    position: relative;
}

#navigation a::before {
    content: "🏳️‍🌈";
    margin-right: 6px;
    font-size: 14px;
}

#navigation a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fefefe;
}

#content {
    margin: 40px auto;
    width: 70%;
}

.contentx {
    margin-bottom: 50px;
    padding: 30px;
    font-size: 17px;
    line-height: 1.7;
    border-radius: 12px;
    background-color: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: #fefefe;
}

.contentx::before,
.contentx::after {
    content: '';
    display: none;
}

blockquote {
    font-family: Georgia, serif;
    font-size: 20px;
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px 40px;
    margin: 50px auto;
    border-left: 6px solid #ff6ec7;
    border-radius: 8px;
    max-width: 800px;
}

blockquote::before {
    content: "🏳️‍🌈 ";
    font-size: 20px;
    opacity: 0.6;
}

textarea,
input,
select {
    width: 100%;
    max-width: 500px;
    padding: 14px 18px;
    margin: 16px 0;
    font-size: 17px;
    background-color: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    color: #ffffff;
    font-family: 'Tahoma', sans-serif;
}

textarea:focus,
input:focus,
select:focus {
    outline: none;
    border-color: #ff99cc;
    background-color: rgba(255,255,255,0.08);
}

h1 {
    font-family: 'Cinzel Decorative', serif;
    font-size: 30px;
    text-align: center;
    color: #ffffff;
    text-transform: uppercase;
    margin: 40px 0;
    border-bottom: 2px solid rgba(255,255,255,0.2);
    padding-bottom: 10px;
    position: relative;
}

h1::before {
    content: "🌈 ";
    font-size: 20px;
    position: absolute;
    left: 0;
    bottom: 10px;
}

#footer {
    font-family: 'Tahoma', sans-serif;
    font-size: 15px;
    text-align: center;
    color: #ddd;
    margin-top: 60px;
    padding: 40px 20px;
    background-color: rgba(255,255,255,0.05);
    border-top: 1px solid rgba(255,255,255,0.1);
}

#footer a {
    color: #ffbbec;
    text-decoration: none;
    border-bottom: 1px dotted #ffbbec;
}

#footer a:hover {
    color: #ffffff;
    border-bottom: 1px solid white;
}

a:link,
a:visited {
    color: #ffb6f2;
    text-decoration: none;
    font-family: 'Alumni Sans Pinstripe', sans-serif;
    font-size: 20px;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
}

a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, red, orange, yellow, green, blue, indigo, violet);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    border-radius: 2px;
}

a:hover::after {
    transform: scaleX(1);
}

a:hover {
    color: #ffffff;
}

i, em {
    font-style: italic;
    color: #eeeeee;
    background: none;
}

b, strong {
    color: #fff;
    font-weight: bold;
    background-color: #b958a5;
    padding: 3px 8px;
    border-radius: 4px;
}



#header {
    background-image: url('premade/head.jpg');
    background-repeat: no-repeat;
    background-position: center;
    height: 780px;
    width: 100%;
    margin-top: -3px;
}