*, *::before, *::after{
    box-sizing: inherit;
    padding: 0;
    margin: 0;
    font-family: 'MedievalSharp', cursive;
}

body{
    background-color: #cbbb99;
    box-sizing: border-box;
}

.form{
    background-color: #ebdcb7;
    max-width: 500px;
    width: calc(100% - 30px);
    margin: 20px auto;
    border: 3px solid #7f452d;
    border-radius: 2px;
    padding: 20px;
    box-shadow: 15px 15px 15px rgba(127, 69, 45, 0.5);
}

.heading__secondary{
    margin-bottom: 10px;
}

.form__input{
    display: inline-block;
    width: 30%;
    height: 30px;
    margin-bottom: 10px;
    padding: 0 10px;
    background-color: #c7af8d;
    border: 1px solid #7f452d;
}

.form__input--select{
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    background-color: #c7af8d;
    border: 1px solid #7f452d;
}

.form__resources{
    height: 30px;
    line-height: 30px;
    padding-left: 35px;
    background-size: 30px;
    background-position: left center;
    background-repeat: no-repeat;
    background-image: url('img/ressources.png');
    margin-bottom: 10px;
    display: none;
}

.p__resources--visible{
    display: block;
}

#resources{
    font-weight: bold;
}

.result__raid {
    width: 25%;
    display: inline-block;
    margin-bottom: 10px;
    font-weight: bold;
}

.form__span{
    display: inline-block;
    width: 70%;
    padding-left: 35px;
    height: 30px;
    line-height: 30px;
    background-size: 30px;
    background-position: left center;
    background-repeat: no-repeat;
}

.form__span--spear{ background-image: url('img/spear.png'); }
.form__span--sword{ background-image: url('img/sword.png'); }
.form__span--axe{ background-image: url('img/axe.png'); }
.form__span--archer{ background-image: url('img/archer.png'); }
.form__span--light{ background-image: url('img/light.png'); }
.form__span--marcher{ background-image: url('img/marcher.png'); }
.form__span--heavy{ background-image: url('img/heavy.png'); }

.form__button{
    display: block;
    width: 50%;
    margin: 0 auto;
    margin-top: 20px;
    border: 2px solid #490000;
    padding: 10px;
    color: #ebdcb7;
    background: #8d0101; /* Old browsers */
    background: -moz-linear-gradient(top, #dd706f 0%, #8d0101 20%, #8d0101 80%, #490000 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #dd706f 0%,#8d0101 20%,#8d0101 80%,#490000 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #dd706f 0%,#8d0101 20%,#8d0101 80%,#490000 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dd706f', endColorstr='#490000',GradientType=0 ); /* IE6-9 */
}