@charset "UTF-8";
*{
	box-sizing: border-box;
	font: 400 1em Roboto,Helvetica Neue,Helvetica,Arial,sans-serif;
}
body {
	background-color: #fafbfc;
    margin: 0;
    padding: 0;
}

/* Animation */

@keyframes fadeInUp {
    from {
        transform: translate3d(0,40px,0)
    }

    to {
        transform: translate3d(0,0,0);
        opacity: 1
    }
}

@-webkit-keyframes fadeInUp {
    from {
        transform: translate3d(0,40px,0)
    }

    to {
        transform: translate3d(0,0,0);
        opacity: 1
    }
}

.animated {
    animation-duration: 2s;
    animation-fill-mode: both;
    -webkit-animation-duration: 2s;
    -webkit-animation-fill-mode: both
}

.animatedFadeInUp {
    opacity: 0
}

.fadeInUp {
    opacity: 0;
    animation-name: fadeInUp;
    -webkit-animation-name: fadeInUp;
}
/*End Animation*/


h1{
	font-weight:100;
	/*font-size:1.4em;*/
	font-size:4em;
	margin: 0 0 30px 0;
	color:#800020;
}
h2{
	font-size:1.5em;
	font-weight:300;
	margin:0;
	color:#444;
}

#container{
	width:100%;
	min-height:60vh;
	display:flex;
	flex-direction:column;
	justify-content:center;
	align-items:center;
}

.list-box{
	width:80%;
	background-color:#e8e8e8;
	box-shadow: 0 0 8px 0 rgba(17,22,26,.16), 0 4px 8px 0 rgba(17,22,26,.08), 0 8px 16px 0 rgba(17,22,26,.08);
	padding:20px;
	border-radius:5px;
	display:flex;
	flex-direction:column;
	justify-content:center;
	align-items:center;
	margin-bottom:30px;
}


.row{
	width:80%;
	display:flex;
	flex-direction:row;
	justify-content: space-between;
    align-items: center;
	padding: 10px 0;
    border-bottom: 1px solid #ccc;
}

.row:hover{
	background-color:#ddd;
}

.action-button{
    border: 1px solid;
	border-radius: 5px;
    text-decoration: none;
    padding: 0.3em;
    margin: 0 5px;
    font-weight: 300;
	font-size: 1.1em;
}
.action-button-dark{
	border-color: #800020;
    color: #800020;
}
.action-button-dark:hover {
	background-color:#800020;
	color:#fff;
}


@media only screen and (max-width: 600px) {
	#main{
		padding-top:15vh;
	}
	h1{
	  font-size:2em;
	}
	h2{
		font-size:1em;
	}
	#container{
		min-height:40vh;
	}
	.list-box{
		width:90%;
	}
	.row{
		width:100%;
	}
	
}
