* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

body {
    width: 100%;
    padding: 30px 0;
}

header, footer {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    width: 100%;
    height: auto;
    max-width: 300px;
}

.footer-items {
    display: flex;
    justify-content: space-around;
    font-size: 20px;
    font-weight: 500;
	text-align: center;
    list-style: none;
}

.footer-items li {
	width: 210px;
}

.footer-items a {
    text-decoration: none;
    color: #000;
}

.footer-items a:hover {
    text-decoration: underline 2px solid #000;
}

.footer-items a:focus {
    background-color: rgb(255, 221, 0);
    box-shadow: rgb(225, 221, 0) 0px -2px, rgb(11, 12, 12) 0px 4px;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    outline: rgba(0, 0, 0, 0) solid 3px;
}

.solid {
    border-top: 7px solid #333;
	margin-bottom: 30px;
}




@media screen and (max-width:666px) {
    .footer-items {
		flex-direction: column;
    }
	
	.footer-items li {
		width: 100%;
		margin-bottom: 20px;
    }
	
	#year {
		order: 3;
	}
}


@media screen and (max-width:1044px) {
    header {
        display:flex;
        justify-content: center;
    }
}