body {
	font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #d7f5d7;
    color: #333;
}

.container {
    max-width: 1000px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fafffa;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.logo {
    text-align: center;
    margin-bottom: 30px;
}

.logo img {
    max-width: 500px;
    height: auto;
}
	
h1 {
    text-align: center;
    margin-bottom: 20px;
}
	
h3 {
    text-align: center;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.link {
    width: 150px;
    text-align: center;
    margin-bottom: 20px;
}

.link img {
    width: 150px;
    height: auto;
    border-radius: 8px;
}

button {
	background-color: #4CAF50;
	color: white;
	padding: 10px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}

button:hover {
	background-color: #45a049;
}

footer {
    background-color: #013b01;
    color: #fff;
    padding: 20px;
    text-align: center;
    position: relative;
    bottom: 0;
    width: 100%;
    margin-top: 10px;
}

footer p {
    margin: 5px 0;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}