* {
    margin: 0;
    padding: 0;
}


h1 {
	font-family: 'open-sans', sans-serif;
	font-weight:800;
	text-align:center;
}

p {
	font-family: 'open-sans', sans-serif;
}

.alphabet 
{
	padding-top:22px;
	text-align:center;
}

.alphabet a
{
	text-decoration : none;
	font-size: 38px;
	padding-right: 10px;
	font-weight: 900;
	color:#000;
}

.alphabet a:hover  
{
        color: #e2dbcb; 
}

.container {
	width:80%;
	margin:auto;
	margin-top: 22px;
}

.lettre {
	text-transform: uppercase;
	font-size:28px;
	font-weight:800;
	margin: 6px 0 6px 0;
}

.mot {
	font-size:22px;
	font-weight:600;
	margin: 6px 0 6px 0;
}

.def {
	font-size:18px;
	font-weight:400;
	margin: 6px 0 6px 0;
}


.definition:nth-child(even) {
background: #e2dbcb;
}

.definition {
padding: 12px;
margin:16px 0 16px 0;
}

#button {
  display: inline-block;
  background-color: #e2dbcb;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color .3s, 
    opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}
#button::after {
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 2em;
  line-height: 50px;
  color: #fff;
}
#button:hover {
  cursor: pointer;
  background-color: #333;
}
#button:active {
  background-color: #555;
}
#button.show {
  opacity: 1;
  visibility: visible;
}
