
* {
	box-sizing: border-box;
	
}
ul {
	list-style-type: none;
	font-family: fantasy;
}

body {
	font-family: Verdana, sans-serif;
	background-color: #f834c3;
}

#demo {
	background-color: aqua;
	font-family: fantasy;
}

#home {
	color: #f834c3;
}

.year {
	font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 3px; 
    text-align: center;
    color: white;
    padding-bottom: 30px;
}


a {
	color: white;
	font-size: 20px;
	padding: 20px;
}

.month {
    width: 100%;
    background: #f834c3;
    text-align: center;
}

.month ul {
    margin: 0;
    padding: 0;
}

.month ul li {
    color: white;
    font-size: 23px;
    text-transform: uppercase;
    padding-top: 70px;
    letter-spacing: 3px;
    text-align: center;
}

.weekdays {
    margin: 0;
    padding: 5px 0;
    border: 3px dashed aqua;
}

.weekdays li {
    display: inline-block;
    width: 13.6%;
    color: #ffffff;
    text-align: center;
    font-size: 18px;
}


/* Add media queries for smaller screens */
@media screen and (max-width:720px) {
    .weekdays li, .days li {width: 13.1%;}
}

@media screen and (max-width: 420px) {
    .weekdays li, .days li {width: 12.5%;}
    .days li .active {padding: 2px;}
}

@media screen and (max-width: 290px) {
    .weekdays li, .days li {width: 12.2%;}
}
		
