@import url(https://use.fontawesome.com/releases/v5.0.6/css/all.css);

@import url('https://fonts.googleapis.com/css?family=Roboto:300');

body {
  font-family: 'Roboto', sans-serif;
  display:flex;
  flex-direction: column;
  align-items:center;
}

img {
  display: block;
  width: 10%;
	height: 10%;
  margin: auto;
}
.container {
  display:flex;
  /*justify-content: flex-start;
  align-content:center;*/
  width:80vw;
  height: 60vh;

}



i {
  padding: 10px;
  margin: 5px;
  background: #ffffff;
  border-radius: 50%;
  cursor: pointer;
}

i:active, i:hover {
  background: #ffffff;
}
img {
  max-width:40%;
  padding: 20px;
}
.binderleft {
  background: #000;
  flex: 0 1 15px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  
}
.binderright {
  background:#;
  flex: 0 1 15px;
  order: 1;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.box {
  /*display:block;*/
  background: #583316;
  text-align: center;
  border-left: 1px solid #000;
  border-right: 1px solid #000;
  flex:  1 1 1px;
  /*flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 1px;*/
}

.box p {
  margin: 10px;
font-size: 1rem;
color: #ffffff;
	
}

.hide {
  flex: 0 0 1px;
  /*flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 1px;*/
  transition: flex-grow .7s linear;
}

.hide > .whitebox {
   display:none;
   
}

.show {
    display: flex;
    flex: 1 1 100%;
    /*flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 100%;*/
    transition: flex-basis .7s linear;
    
}


.whitebox {
  display:flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.attrib {
  text-align: right;
	font-size: 1rem;
  display: block;
  padding-top:5px;
}