<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Necromancy</title>
    <link rel="stylesheet" href="../css/style.css">
    <script src="../javascript/script.js"></script>
</head>
<body>
    <header>
        <picture>
            <source media="(min-width: 1024px)" srcset="../img/Banner.jpg">
            <source media="(min-width: 500px)" srcset="../img/Banner_Mobile_1200px.jpg">
            <img src="../img/Banner_Mobile_400px.jpg" alt="DnD Banner">
        </picture>
    </header>
    <div class="MobileNav">
        <div id="burgerMenu" class="class" onclick="this.classList.toggle('On');">
        </div>
        <nav class="Mobile" id="Mobile">
            <ul>
                <li onclick="this.classList.toggle('On');">
                    <a href="index.html">Forside</a>
                </li>
                <li onclick="this.classList.toggle('On');">
                    <a href="#">Classes</a>
                    <div class="dropdown-dropdown-content">
                        <a href="../barbarian.html">Barbarian</a>
                        <a href="../cleric.html">Cleric</a>
                        <a href="../fighter.html">Fighter</a>
                        <a href="../sorcerer.html">Sorcerer</a>
                    </div>
                </li>
                <li onclick="this.classList.toggle('On');">
                    <a href="#">Races</a>
                    <div class="dropdown-dropdown-content">
                        <a href="../races/dwarf.html">Dwarf</a>
                        <a href="../races/elf.html">Elf</a>
                        <a href="../races/human.html">Human</a>
                    </div>
                </li>
                <li onclick="this.classList.toggle('On');">
                    <a href="#">Spells</a>
                    <div class="dropdown-dropdown-content">
                        <a href="abjuration.html">Abjuration</a>
                        <a href="conjuration.html">Conjuration</a>
                        <a href="divination.html">Divination</a>
                        <a href="enchantment.html">Enchantment</a>
                        <a href="evocation.html">Evocation</a>
                        <a href="illusion.html">Illusion</a>
                        <a href="necromancy.html">Necromancy</a>
                        <a href="transmutation.html">Transmutation</a>
                    </div>
                </li>
                <li class="cta">
                    <a href="../shop.html">Shop</a>
                </li>
            </ul>
        </nav>
    </div>
    <nav class="Desktop">
        <ul>
            <li><a href="../index.html">Forside</a></li>
            <li class="dropdown">
                <a href="" class="dropbtn">Classes</a>
                <div class="dropdown-content">
                    <a href="../classes/barbarian.html">Barbarian</a>
                    <a href="../classes/cleric.html">Cleric</a>
                    <a href="../classes/fighter.html">Fighter</a>
                    <a href="../classes/sorcerer.html">Sorcerer</a>
                </div>
            </li>
            <li class="dropdown">
                <a href="" class="dropbtn">Races</a>
                <div class="dropdown-content">
                    <a href="../races/dwarf.html">Dwarf</a>
                    <a href="../races/elf.html">Elf</a>
                    <a href="../races/human.html">Human</a>
                </div>
            </li>
            <li class="dropdown">
                <a href="" class="dropbtn">Spells</a>
                <div class="dropdown-content">
                    <a href="abjuration.html">Abjuration</a>
                    <a href="conjuration.html">Conjuration</a>
                    <a href="divination.html">Divination</a>
                    <a href="enchantment.html">Enchantment</a>
                    <a href="evocation.html">Evocation</a>
                    <a href="illusion.html">Illusion</a>
                    <a href="necromancy.html">Necromancy</a>
                    <a href="transmutation.html">Transmutation</a>
                </div>
            </li>
            <li class="cta"><a href="../shop.html">Visit our shop</a></li>
        </ul>
    </nav>
    <img class="mainPic" src="../img/necromancy.png" alt="Necromancy">
    <h1>Necromancy</h1>
    <p>Necromancy was a school of magic whose spells manipulate the power of death, unlife, and the life force. A wizard who specialized in the necromantic school was called a necromancer.</p>
    <p>Spells involving the undead made up a large portion of this school, including animate dead and finger of death. Highly focused on the Negative Energy Plane, most spells from this school drained abilities.</p>
    <p>This school was the one most associated with lichdom, a process that allowed the caster to live (or rather, exist) in an undead state indefinitely by securing their essence in a receptacle known as a phylactery.</p>
    <h3>Necromancy spell list</h3>
    <div class="centerSpell">
        <div class="spellTable">
            <span>Animate Dead</span>
            <span>Astral Projection</span> 
            <span>Bestow Curse </span>
            <span>Blight </span>
            <span>Blindness/Deafness</span> 
            <span>Chill Touch </span>
            <span>Circle of Death </span>
            <span>Clone </span>
            <span>Contagion </span>
            <span>Create Undead </span>
            <span>Eyebite </span>
            <span>False Life </span>
            <span>Finger of Death</span> 
            <span>Gentle Repose </span>
            <span>Harm </span>
            <span>Inflict Wounds</span> 
            <span>Magic Jar </span>
            <span>Raise Dead </span>
            <span>Ray of Enfeeblement</span> 
            <span>Resurrection </span>
            <span>Revivify </span>
            <span>Spare the Dying</span> 
            <span>Speak with Dead </span>
            <span>True Resurrection </span>
            <span>Vampiric Touch </span>
        </div>
    </div>
</body>
</html>