body {
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #3f474f;
}

.container {
    text-align: center;
	padding: 20px;
    width: 100%;
    max-width: 800px;
    box-sizing: border-box;
}

.logo img {
	width: 100%;
    max-width: 1024px;
	height: auto;
}

.social-icons {
    margin-top: 24px;
}

.social-icons a {
    margin: 0 8px;
    display: inline-block;
}

.social-icons img {
	opacity: 0.5;
    width: 32px;
    transition: transform 0.2s ease, opacity 0.2s;
}

.social-icons img:hover {
	opacity: 1.0;
	color: #ffffff;
    transform: scale(1.5);
}

@media (max-width: 560px) {
    .social-icons img {
        width: 24px;
    }

    .social-icons a {
        margin: 0 4px;
    }
}

footer {
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    padding: 16px 0;
    position: relative;
    width: 100%;
    font-size: 10px;
    line-height: 1.5;
}

footer p {
    margin: 0;
}