html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  margin: 0;

  padding: 0;
  font-family: 'Alegreya', serif;
  display: flex;
  /* align-items: flex-start;
  justify-content: center; */
  flex-direction: column;
  overflow: auto;
  

}
body,html{
	 height: 100%;
  width:100%;
}

#root{
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #ccc;
  width:95%;
  padding:10px;
  margin: 40px;
}
.App{
	display:flex;
	align-items:center;
	justify-content: center;
	flex-flow: column nowrap;
	position: relative;
}
.header{
	position: relative;
}
.main{
display:flex;
	align-items:center;
	justify-content: space-between;
	width: 100%;
	margin-top: 35px;

}

.separator{
	width: 100%;
    position: absolute;
    height: 1px;
    border-top: 3px dotted #FFFF00;
    bottom: 100px;
}
.Modal {
    position: fixed;
    z-index: 500;
    background-color: white;
    width: 70%;
    border: 1px solid #ccc;
    box-shadow: 1px 1px 1px black;
    padding: 16px;
    left: 15%;
    top: 30%;
    box-sizing: border-box;
    transition: all 0.3s ease-out;
}


.Backdrop {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.5);
}
.date{
  margin-right:110px;
}

.btnBar,.App-title{
  margin-bottom: 15px;
}
@media (min-width: 600px) {
    .Modal {
        width: 500px;
        left: calc(50% - 250px);
    }
  
}
@media (max-width: 600px) {
  .date{
    margin-right:55px;
  }
  
}

#article {
  padding: 5% 10% 1%;
  font-size: 1.1em;
}