body {
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: black;
}

footer a {
    color: white;
}

.copyright a{
    font-size: 14px;
    color: #727272;   
}


header a {
    color: #000;
}

header a:hover {
    color: #cb2028;
}

header {
    background: #fff;
    padding: 20px 40px;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    max-height: 60px;
}

nav {
    margin-left: auto;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
}

main {
    padding: 20px 0;
}

main .container {
    width: 80%;
    margin: auto;
}

.announcement {
    background: #fff;
    padding: 40px 0;
    text-align: center;
}

.announcement .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.announcement-img {
    max-width: 500px;
    width: 100%;
}

.announcement-text {
    max-width: 600px;
    text-align: left;
}

.info {
    background: #000;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

.info .container {
    display: flex;
    justify-content: space-around;
}

.info-box {
    text-align: center;
}

.info-box img {
    max-width: 50px;
    margin-bottom: 10px;
}

.about {
    padding: 40px 0;
    text-align: center;
}

.about p {
    max-width: 1100px;
    margin: 0 auto;
    text-align: justify;
}

.about .container {
    width: 80%;
    margin: auto;
}

.proclub-logo {
    max-width: 350px;
    margin-bottom: 50px;
}

footer {
    background: #000;
    color: #fff;
    padding: 40px 0;
    text-align: left;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
    width: 80%;
    margin: auto;
}

.footer-logo-container {
    flex: 0 0 25%;
    text-align: center;
}

.footer-empty {
    flex: 0 0 50%;
}

.footer-contact {
    flex: 0 0 25%;
}

.footer-contact p {
    margin: 5px 0;
}

footer .container > div {
    margin-top: 0px;
}

footer .container > div:first-child {
    margin-top: 0;
    text-align: center;
}

.footer-contact {
    text-align: left;
}

.copyright {
    font-size: 14px;
    color: #727272;
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid #444;
    padding-top: 20px;
}

/* Mobile */
@media (max-width: 1030px) {
		.announcement-img {
	max-width:400px;	
	}
}	

@media (max-width: 850px) {
    header .container {
        flex-direction: column;
        align-items: center;
    }

    nav {
        margin-left: 0;
		margin-top:20px;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    nav ul li {
        display: flex;
    }

    .announcement .container {
        flex-direction: column;
        text-align: center;
    }

    .announcement-text p {
        text-align: center;
    }
	
	.announcement-text{
        text-align: right;
    }
	
	.announcement-img {
	max-width:400px;	
	}
	

    footer .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-logo-container,
    .footer-empty,
    .footer-contact {
        flex: 0 0 100%;
    }

    .footer-contact {
        text-align: center;
    }
}
