* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	background-color: #777777;
	font-family: 'Roboto', Helvetica, sans-serif;
  color:white;
}

.medium {
	display: flex;
	flex-flow: column;

	width: 100vw;
	height: 100vh;
}

header {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 60px;
}

.lists {
	display: flex;
  justify-content:space-evenly;
	flex: 1;
	width: 100%;
	overflow-x: scroll;
}

.lists .list {
  font-size:30px;
  color:white;
  
	display: flex;
	flex-flow: column;
	flex: 1;

	width: 100%;
	min-width: 350px;
	max-width: 450px;
	height: 320%;
	min-height: 500px;

	background-color: rgba(0, 0, 0, 0.1);
	margin: 0 15px;
	padding: 8px;
	transition: all 0.2s linear;
}

.lists .list .list-item {
	border-radius: 8px;
	padding: 15px 20px;
	text-align: center;
	margin: 4px 0px;
}
.button{
    font-size:20px;
    background-color: #8E8E8E; 
    height:30px;
    border: 4px;
    border-color: #666566;
    border-radius: 10%;
    color: white;
    padding: 5px;
    text-decoration: none;
}
.button:hover{
    box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
    transition: 0.3s;
}
.button:active{
  background-color: #464646;
  box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
  transition: 0.2s;
}
p{
  
  text-align:center;
  font-size:80px;
}
h1{
  text-align:center;
  top:50%;
  margin-top:220px;
}
em{
  font-size:120px;
}
 a:link{
    color:white;
    text-decoration:none;
  }
  a:visited {
    color: white;
  }
  