body {
    font-family: 'Arial', sans-serif;
    background-color: #121212;
    color: #ffffff;
    margin: 0;
    padding: 0;
}

h1 {
    color: #ffffff;
}

.card {
    background: rgba(30, 30, 30, 0.9);
    border: none;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.card-img-top {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.social-icons {
    margin-top: 10px;
}

.social-icons a {
    margin: 0 5px;
    color: #ffffff;
}

.social-icons a.btn {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s;
}

.social-icons a.btn-primary:hover {
    background-color: #25D366;
}

.social-icons a.btn-info:hover {
    background-color: #3B5998;
}

.social-icons a.btn-dark:hover {
    background-color: #0077B5;
}
