/*
* Généralités
*/

* {
    box-sizing: border-box;

}

img {
    max-width: 100%;
    border-radius: 100%;
}

/*
* Photo profil
*/

#B p{border: plum 5px solid;
    border-radius: 100%;
    width: 100px;
    margin: auto;}

/*
* Glace
*/

.icecream {
    width: 150px;
    height: 290px;
    position: relative;
    border-top-left-radius: 80px;
    border-top-right-radius: 80px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    box-shadow: 0 0 10px inset rgba(0, 0, 0, .3),
        0 0 10px rgba(100, 63, 73, .7);
    background: #6B3E26;
}

.icecream:before {
    content: '';
    display: block;
    width: 12px;
    height: 70%;
    border-radius: 8px;
    position: absolute;
    left: 11px;
    top: 24%;
    box-shadow: 0 0 2px inset rgba(255, 255, 255, .3);
    background: #875840;
}

.circle {
    width: 15px;
    height: 20px;
    border-radius: 50%;


    position: absolute;
    left: 74%;
    top: 11%;
    transform: rotate(-25deg);
    box-shadow: 0 0 3px inset rgba(255, 255, 255, .6);
    background: #875840;
}

.drip,
.dripw,
.drop {
    width: 16px;
    position: absolute;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    box-shadow: 0 0 10px inset rgba(0, 0, 0, .3);
    z-index: -1;
    background: #875840;
}


.drip {
    height: 5px;
    top: 98%;
    left: 16%;
    animation: animation-drip 10s linear;
}

.dripw {
    height: 54px;
    top: 98%;
    left: 36%;
    animation: animation-dripw 12s linear;
}

.drop {
    height: 54px;
    top: 98%;
    left: 70%;
    animation: animation-drop 8s linear;
}

@keyframes animation-drop {
    from {
        height: 3px;
    }

    to {
        height: 51px;
    }
}

@keyframes animation-drip {
    from {
        height: 3px;
    }

    to {
        height: 32px;
    }
}

@keyframes animation-dripw {
    from {
        height: 3px;
    }

    to {
        height: 32px;
    }
}

.stick {
    width: 32px;
    height: 95px;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    position: absolute;
    top: 99.98%;
    left: 40%;
    z-index: -1;
    box-shadow: 0 2px 8px inset rgba(0, 0, 0, .5);
    ;
    background: #ECA168;
}

.ml2 {
    font-weight: 900;
    font-size: 3.5em;
    margin-bottom: 25px;
}

.ml2 .letter {
    display: inline-block;
    line-height: 1em;
}

.custom-btn {
    width: 210px;
    height: 40px;
    color: #fff;
    border-radius: 5px;
    padding: 10px 25px;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, .5),
        7px 7px 20px 0px rgba(0, 0, 0, .1),
        4px 4px 5px 0px rgba(0, 0, 0, .1);
    outline: none;
}

/* 14 */
.btn-14 {
    background: rgb(255, 151, 0);
    border: none;
    z-index: 1;
    box-shadow: 4px 4px 5px black;
}

.btn-14:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 5px;
    background-color: #eaf818;
    background-image: linear-gradient(315deg, #eaf818 0%, #f6fc9c 74%);
    box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, .5);
    7px 7px 20px 0px rgba(0, 0, 0, .1),
    4px 4px 5px 0px rgba(0, 0, 0, .1);
    transition: all 0.3s ease;
}

.btn-14:hover {
    color: #000;
    text-decoration: none;
}

.btn-14:hover:after {
    top: auto;
    bottom: 0;
    height: 100%;
}

.btn-14:active {
    top: 2px;
}

.ml2 {
    font-weight: 900;
    font-size: 3.5em;
  }
  
