header{
    background-color: orangered;
    display: flex;
    align-items: center;
}

header img{
    width: 100px;
    flex: 0;
}

header nav{
    flex: 1;
    display: flex;
    justify-content: space-around;
}

header nav a{
    text-transform: uppercase;
    text-decoration: none;
    color: orange;
    transition: 0.5s;
}

header nav a:hover{
    transform: scale(1.1);
    color: orange;
    font-weight: bold;
}

article{
	float:left;	
	width:100%;
	display:block;
}
article:hover{
	background:#F0F0F0;	
}
article div.articleDtg{
	width:75px;
	height:100px;
	border: 2px solid red;
	border-radius:20px;	
	overflow:hidden;
	font-family:arial;
	float:left;
	margin: 0 25px 40px 0;
}
article div.articleDtg div.articleMonth{
	height:40px;
	background-color:red;
	/*background: linear-gradient(0deg, rgba(255,103,94,1) 0%, rgba(163,1,1,0.7315301120448179) 100%);*/
	color:white;
	text-align:center;
	font-size:25px;
	text-transform: uppercase;
	padding-top:3px;	
}
article div.articleDtg div.articleDay{
	height:85px;
	background-color:white;
	color:black;
	text-align:center;	
	font-size:50px;
	margin-top:-5px;
}
article h2{
	margin-left:20px;
	font-size:24px;	 
	display:block;
	font-family:arial;
}
article address{
	margin:7px 0 0 20px;
	font-size:12px;	 
	display:block;
	font-family:arial;
}
article p{
	margin:15px 0 0 20px;
	font-size:16px;	 
	display:block;
	font-family:arial;
}

footer{
    background-color: burlywood;
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    display: flex;
}

a.active{
	color: green
}

button#print{
    font-size: 20px;
    color: black;
    background-color: transparent;
    border: none;
    cursor: pointer;
	height: 40px;
}

button#print:hover{
    background-color: lightgray;
}

.print{
	display: flex;
	justify-content: space-between;
}

@media print{
    header, footer, button#print{
        display: none;
    }
    main img{
        width: 15%;
    }
    main p{
        font-size: 18px;
    }
}