body {
    margin: 0;
    padding: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f0f0;
    font-family: Arial, sans-serif;
}

.container {
    text-align: center;
}

h1 {
    margin-bottom: 40px;
    font-size: 2.2rem;
    color: #333;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.social-links a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.social-links img {
    width: 50px;
    height: 50px;
}

.social-links a:hover {
    transform: scale(1.1);
}

.back-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 1rem;
    color: #fff;
    background-color: #333;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.back-button:hover {
    background-color: #555;
}

footer {
    width: 100%;
    text-align: center;
    font-size: 0.8rem;
    color: #777;
    position: fixed;
    bottom: 0;
    left: 0;
    padding: 10px 0;
    background-color: #f0f0f0;
}


footer p {
    margin: 0;
}