:root
{
    --dark-orange: #bb3e03;
    --violet: #3c096c;
    --purple: #9d4edd;
}

.jumbotron{
    height: 350px; 
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),url('../Images/bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    margin-bottom: 2rem;
}
.navbar-brand{
    color: var(--violet);
}

span
{
    color: var(--purple);
}
.card
{
    border: 1px solid var(--purple);
}

.btn
{
    background-color: var(--violet);
    border: none;
    margin-top: 1rem;
}

.btn:hover
{
    background: var(--purple);
}

.card img{
    height: 200px;
    object-fit: cover;
}

.embed-responsive-item
{
    width: 100%;
}

.list-group
{
    list-style: none;
    display: flex;
    flex-direction: row;
}

/* Common styles for list items */
.list-group li {
    margin-right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.list-group li a {
    text-decoration: none;
    color: white;
    font-size: 26px;
}

/* Social media icon styles */
.facebook {
    background: #1877f2;
    color: #1DA1F2;
}

.twitter {
    background: #1DA1F2;
}

.insta {
    background: linear-gradient(45DEG, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}

.whatsapp {
    background-color: #1d9b1d;
}

.github {
    background: #080808;
}

/* Responsive styles */
@media (max-width: 768px) {
    .row {
        gap: 20px;
    }

    .col-md-4
    {
        margin-bottom: 15px;
    }
}

/* Additional styles for footer margin */
footer {
    margin-top: 2rem;
}

/* Common styles for list */
.list-group {
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
