<!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>Enchantment</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/enchantment.png" alt="Enchantment">
    <h1>Enchantment</h1>
    <p>Enchantment spells affect the minds of others, influencing or controlling their behavior. This school includes the spells charm person and mind fog. A wizard who specializes in enchantment is known as an enchanter. The female version is referred to as an enchantress.</p>
    <h2>Subschools</h2>
    <p>•    Charm: These are spells that make the target regard the caster as a friend.</p>
    <p>•    Compulsion: Spells of this kind force the target to do something beyond their natural will.</p>
    <h3>Enhantment spell list</h3>
    <div class="centerSpell">
        <div class="spellTable">
            <span>Animal Friendship</span> 
            <span>Animal Messenger </span>
            <span>Antipathy/Sympathy </span>
            <span>Bane </span>
            <span>Bless </span>
            <span>Calm Emotions</span> 
            <span>Charm Person </span>
            <span>Command </span>
            <span>Compulsion </span>
            <span>Confusion </span>
            <span>Dominate Beast</span> 
            <span>Dominate Monster </span>
            <span>Dominate Person </span>
            <span>Enthrall </span>
            <span>Feeblemind </span>
            <span>Geas </span>
            <span>Heroism </span>
            <span>Hideous Laughter</span> 
            <span>Hold Monster </span>
            <span>Hold Person </span>
            <span>Irresistible Dance</span> 
            <span>Mass Suggestion </span>
            <span>Modify Memory </span>
            <span>Power Word Kill </span>
            <span>Power Word Stun </span>
            <span>Sleep </span>
            <span>Suggestion</span> 
            <span>Vicious Mockery</span> 
            <span>Zone of Truth</span>
        </div>
    </div>
</body>
</html>