@import url('https://fonts.googleapis.com/css?family=Nunito');
*{
  margin:0;
  padding:0;
  box-sizing: border-box;
}
body{
  color: #3c2e3d;
  background-color:#B0DBF1;
  font-family: 'Nunito', sans-serif;
}
.main-wrapper{
  display:flex;
  flex-direction:column;
  align-items:center;
}
.wrapper{
  display:flex;
  flex-direction:column;
  align-items:center;
  height:70vh;
  width:100%;
  
}
.title{
  height:30vh;
  display:flex;
  align-items:center;
}
.container{
  height:50vh;
  width:100%;
  display:flex;
  flex-direction:column;
  justify-content:space-around;
  align-items:center;
}

#code{
  width:50%;
  height:60%;
  outline: none;
  background-color:#8bcbc8;
  font-size:18px;
  color: #3c2e3d;

}
.buttons{
  display:flex;
  justify-content:center;
}

button{
  color:#3c2e3d;
  background:#ecc7c0;
  padding:10px;
  text-decoration: none;
  font-size: 16px;
  margin:20px;
  text-transform: uppercase;
  border: 1px solid #3c2e3d;
  cursor: pointer;
  border-radius: 15px;
  outline:none;
  
}
button:hover{
  background:#3c2e3d;
  border:none;
  color:#dae9e4;
  text-shadow: 0px 0px 6px rgba(255, 255, 255, 1);
  -webkit-box-shadow: 0px 5px 40px -10px rgba(0,0,0,0.57);
  -moz-box-shadow: 0px 5px 40px -10px rgba(0,0,0,0.57);
  transition: all .5s ease ;
}

#result{
  text-align:center;
  font-size:30px;
  width:50%;
}


#article {
  padding: 5% 10% 1%;
}