body {
    font-family: 'Georgia', serif;
    margin: 0;
    padding: 0;
    background: url('https://media.discordapp.net/attachments/553140367592128512/1177029014209179648/solomon.jpg?ex=657104b1&is=655e8fb1&hm=1202bb15a0de725b6ad89a26bb3625a7040b3f9dd9d1fb478c6e9920865af419&=&format=webp') no-repeat center center fixed;
    background-size: cover;
    color: #f5deb3;
}

header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9)), url('https://media.discordapp.net/attachments/553140367592128512/1177029013865254982/Solomon2.jpg?ex=657104b1&is=655e8fb1&hm=a7d47de6f8955bbac7c71e287dc96a5e29ecdea1ea605cebe8e5b398a52df7c6&=&format=webp&width=931&height=671') no-repeat center center;
    background-size: cover;
    color: white;
    text-align: center;
    padding: 100px 0;
    border-bottom: 5px solid #dcdcdc;
}

h1, h2 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-family: 'Merriweather', serif;
}

section {
    background-color: rgba(20, 20, 20, 0.8);
    margin: 30px auto;
    padding: 25px;
    width: 70%;
    border-radius: 10px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
    animation: fadeIn 1s ease-out;
    border: 1px solid #f5deb3;
}

ul {
    list-style-type: none;
    padding: 0;
}

li {
    margin-bottom: 10px;
    font-size: 18px;
    color: #deb887;
}

footer {
    background-color: rgba(20, 20, 20, 0.9);
    color: #f5deb3;
    text-align: center;
    padding: 10px;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    font-size: 16px;
}

a, button {
    background-color: #f5deb3;
    color: black;
    padding: 10px 20px;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

a:hover, button:hover {
    background-color: #deb887;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

section:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.6);
    transition: box-shadow 0.3s ease-in-out;
}
