@import url('https://fonts.googleapis.com/css2?family=Parkinsans:wght@300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    font-family: "Parkinsans", sans-serif;
    background-color: #000;
    color: #fff;
}

.dropdown-menu {
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1);
}

.dropdown-item {
    transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-item:hover {
    background-color: #333;
    color: #fff;
}

h1 a{
    text-decoration: none;
    color:#fff
}

.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

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

.btn-outline-light {
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-outline-light:hover {
    background-color: #fff;
    color: #000;
}


a {
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.8;
}

.list-group-item{
    border: none;
    margin-top: 1vh;
}