/* Variables */
/* Les variables SCSS sont remplacées par leurs valeurs CSS */
/* $black: #000; */
/* $semi-black: #1a2130; */
/* $white: #fff; */
/* $dress: #ededed; */
/* $dress-dark: darken($dress, 10%); -> #d1d1d1 */
/* $sword: #e6e6e6; */
/* $staff: #bf5507; */
/* $skin: #ffd8ad; */
/* $hair: #c2beb5; */
/* $hair-dark: darken($hair, 10%); -> #b0a99f */
/* $lips: pink; */
/* $fire: black, #6C1305, #DE8531, #EFAC41; */
/* $fire-reverse:#EFAC41, #DE8531, #6C1305, black; */

@keyframes floating {
    to {
        top: 1.5rem;
    }
}

.message h1.text-403 {
    /* $black */
    color: #fff;
    /* $white */
    text-align: center;
    font-family: "Open Sans";
    font-size: 2.5rem;
}

.message p.text-403 {
    /* $black */
    color: #fff;
    /* $white */
    text-align: center;
    font-family: "Open Sans";
    font-size: 1.3rem;
}

.message {
    max-width: 700px;
    margin: 5rem auto 0 auto;
}

.gandalf {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
    top: 1rem;
    animation: floating 1s infinite alternate ease-in-out;
}

.gandalf div {
    position: absolute;
}

.gandalf::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background-color: #1a2130;
    /* $semi-black */
    border-radius: 50%;
}

.gandalf .fireball {
    bottom: -10px;
    left: 50px;
    width: 300px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(#EFAC41, #DE8531, #6C1305, black);
    /* $fire-reverse */
    border: 5px solid #000;
    /* $black */
}

.gandalf .skirt {
    bottom: 50px;
    left: 100px;
    border-bottom: 230px solid #ededed;
    /* $dress */
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    filter: drop-shadow(0 0 6px #d1d1d1);
    /* $dress-dark */
}

.gandalf .skirt::before {
    content: "";
    position: absolute;
    background-color: #ededed;
    /* $dress */
    width: 100px;
    height: 21px;
    top: 230px;
    left: 0px;
    border-bottom-right-radius: 180%;
    border-bottom-left-radius: 100%;
}

.gandalf .skirt::after {
    content: "";
    position: absolute;
    background-color: #ededed;
    /* $dress */
    width: 100px;
    height: 28px;
    top: 230px;
    left: -100px;
    border-bottom-right-radius: 80%;
    border-bottom-left-radius: 180%;
}

.gandalf .sleeves::before,
.gandalf .sleeves::after {
    /* sleeves */
    content: "";
    position: absolute;
    border-bottom: 70px solid #ededed;
    /* $dress */
    filter: drop-shadow(0 0 6px #d1d1d1);
    /* $dress-dark */
}

.gandalf .sleeves::before {
    /* sleeve left */
    top: 130px;
    left: 191px;
    border-left: 100px solid transparent;
    border-right: 40px solid transparent;
    transform: rotate(-34deg);
}

.gandalf .sleeves::after {
    /* sleeve right */
    top: 127px;
    left: 70px;
    border-left: 40px solid transparent;
    border-right: 100px solid transparent;
    transform: rotate(41deg);
}

.gandalf .shoulders {
    background-color: #ededed;
    /* $dress */
    border-radius: 50%;
    width: 100px;
    height: 130px;
    left: 150px;
    top: 120px;
}

.gandalf .shoulders .hand {
    width: 33px;
    height: 26px;
    border-radius: 50%;
    background-color: #ffd8ad;
    /* $skin */
    top: -6px;
}

.gandalf .shoulders .left {
    left: -70px;
    transform: rotate(-20deg);
}

.gandalf .shoulders .left::after {
    /* sword */
    content: "";
    position: absolute;
    background-color: #e6e6e6;
    /* $sword */
    width: 126px;
    height: 8px;
    border-radius: 4px;
    transform: rotate(-105deg);
    transform-origin: bottom;
    top: -48px;
    left: -56px;
}

.gandalf .shoulders .right {
    right: -70px;
    transform: rotate(20deg);
}

.gandalf .shoulders .right::after {
    /* staff */
    content: "";
    position: absolute;
    background-color: #bf5507;
    /* $staff */
    width: 250px;
    height: 5px;
    border-radius: 2.5px;
    transform: rotate(-78deg);
    transform-origin: left;
    bottom: -100px;
    left: 0;
}

.gandalf .head {
    width: 80px;
    height: 90px;
    top: 80px;
    left: 160px;
    background-color: #ffd8ad;
    /* $skin */
    border-radius: 50%;
}

.gandalf .head::before,
.gandalf .head::after {
    /* eyes */
    content: "";
    position: absolute;
    background-color: #000;
    /* $black */
}

.gandalf .head::before {
    width: 13px;
    height: 5px;
    border-radius: 3px;
    top: 42px;
    left: 22px;
    transform: rotate(19deg);
}

.gandalf .head::after {
    width: 13px;
    height: 5px;
    border-radius: 3px;
    top: 42px;
    right: 22px;
    transform: rotate(-19deg);
}

.gandalf .head .hair {
    width: 70px;
    height: 30px;
    background-color: #c2beb5;
    /* $hair */
    border-radius: 50%;
    top: 0px;
    left: 5px;
}

.gandalf .head .hair::before,
.gandalf .head .hair::after {
    /* hair sides */
    content: "";
    position: absolute;
    background-color: #c2beb5;
    /* $hair */
    filter: drop-shadow(2px 5px 0 #b0a99f);
    /* $hair-dark */
}

.gandalf .head .hair::before {
    /* hair left */
    top: 13px;
    left: -16px;
    width: 25px;
    height: 100px;
    border-top-left-radius: 34px;
    border-top-right-radius: 15px;
    border-bottom-left-radius: 100px;
    border-bottom-right-radius: 20px;
    transform: rotate(8deg);
}

.gandalf .head .hair::after {
    /* hair right */
    top: 13px;
    right: -16px;
    width: 25px;
    height: 100px;
    border-top-left-radius: 15px;
    border-top-right-radius: 34px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 100px;
    transform: rotate(-10deg);
}

.gandalf .head .beard {
    top: 64px;
    left: 5px;
    border-top: 80px solid #c2beb5;
    /* $hair */
    border-left: 35px solid transparent;
    border-right: 35px solid transparent;
    border-radius: 30px;
    filter: drop-shadow(2px 5px 0 #b0a99f);
    /* $hair-dark */
}

.gandalf .head .beard::before {
    /* mouth */
    content: "";
    position: absolute;
    background-color: pink;
    /* $lips */
    width: 20px;
    height: 5px;
    border-radius: 40%;
    top: -70px;
    left: -9px;
}