/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
    background: url("2731274wgc97x986v.jpg") center / cover no-repeat;
    margin: 0;
    font-family: 'Georgia', 'Times New Roman', serif;
    color: #3E2F1C;
    box-sizing: border-box;
    padding: 0;
    position: relative;
    line-height: 1.6;
    z-index:3;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 20px;
    background-image: url("glitterfantasy.jpg");
    background-size: cover;
    background-position: center;
    border-bottom: 3px double #5E4A34;
    box-shadow: inset 0 -2px 5px rgba(0,0,0,0.2);
    position: relative;
}


header .header-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

header .header-center {
    text-align: center;
    flex-grow: 1;
}

header .header-glitter {
    display: block;
    margin: 0 auto 3px;
    width: 100%;
    max-width: 550px;
    filter: drop-shadow(2px 2px 6px #8D7351);
}

header .side-img {
    width: 280px;
    height: auto;
    filter: drop-shadow(2px 2px 6px #8D7351);
    border: 4px double #B58E61;
}

header h1 {
    margin: 0 0 10px;
    color: #3E2F1C;
    font-family: 'Courier New', Courier, monospace;
    font-size: 2.8em;
    text-shadow: 1px 1px 2px #B58E61;
    border-top: 2px solid #8D7351;
    border-bottom: 2px solid #8D7351;
    display: inline-block;
    padding: 5px 15px;
    background: #E0CBAF;
    box-shadow: 0 0 6px #8D7351;
}

main {
    background: #F1E3CD;
    padding: 30px 40px;
    max-width: 900px;
    margin: 40px auto;
    border: 1px solid #B58E61;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    border-radius: 8px;
}

main p {
    margin-bottom: 20px;
    font-size: 1.15em;
    color: #4B3824;
}

section h2 {
    font-family: 'Georgia', serif;
    font-size: 1.8em;
    border-bottom: 2px solid #8D7351;
    margin-top: 30px;
}

section ul {
    list-style-type: none;
    padding: 0;
    margin-top: 15px;
}

section ul li {
    margin-bottom: 12px;
}

section ul li a {
    color: #3E2F1C;
    text-decoration: none;
    font-weight: bold;
    padding: 5px 10px;
    background: #D9BC97;
    border-radius: 5px;
    transition: all 0.3s;
    box-shadow: inset 0 0 5px #B58E61;
    font-family: 'Courier New', Courier, monospace;
}

section ul li a:hover {
    background: #C7B08A;
    color: #2A1E12;
}

img {
    display: block;
    margin: 25px auto;
    border-radius: 5px;
    box-shadow: 0 0 8px rgba(0,0,0,0.2);
}

footer {
    background-color: #C7B08A;
    padding: 15px 0;
    border-top: 2px dashed #8D7351;
    text-align: center;
}

footer p {
    color: #3E2F1C;
    font-size: 1em;
    margin: 0;
    font-family: 'Courier New', Courier, monospace;
}

.gif-button {
    display: block;
    margin: 40px auto;
    width: 250px;
    height: auto;
    transition: transform 0.3s;
    cursor: pointer;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.gif-button:hover {
    transform: scale(1.05);
}