body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://via.placeholder.com/1920x1080') no-repeat center center/cover;
    color: white;
}

header {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px 0;
    width: 100%;
    text-align: center;
    border-bottom: 2px solid #007BFF;
}

main {
    padding: 20px;
    text-align: center;
}

.social-links a {
    display: inline-block;
    margin: 15px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #007BFF;
}

.social-links i {
    margin-right: 5px;
}

footer {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px 0;
    width: 100%;
    text-align: center;
    border-top: 2px solid #007BFF;
    position: absolute;
    bottom: 0;
}

.small {
    font-size: small;
}