@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;500;700&display=swap');

:root
{
    --black: #00171f;
    --gray: #bfc0c0;
    --bright-orange: #ff4e00;
    --orange: #ff8800;
    --hover-orange: #dd7907;
    --blue: #73d2de;
}

*{
    font-family: 'Ubuntu', sans-serif;
    outline: none;
    border: none;
    text-decoration: none;
    list-style: none;
}

span
{
    color: var(--bright-orange);
    font-weight: 500;
}



.btn
{
    background-color: var(--orange);
    border: none;
    color: white;
}

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

.card a
{
    text-decoration: none;
    color: var(--black);
}

.card-title
{
    color: var(--black);
}



.buttons 
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    
    
}

.buttons .btn
{
    color: white;
}



#location-links li
{
    display: flex;

    margin-bottom: 10px;
}

#location-links li i
{
    font-size: 26px;
    margin-right: 5px;
    color: var(--orange);
}


#social-media {
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

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

#social-media 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;
}


footer
{
    margin-top: 1rem;
}
@media (max-width:991px) {

    #social-media li
    {
        margin-right: 0;
    }
    #social-media i
    {
        font-size: inherit;
    }
}