@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@700&display=swap');
a {
    text-decoration: none;
    color: white;
}

.categories {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 3em;
    justify-content: center;
    align-content: center;
    padding: 0em 2em 2em 2em;
}
.card {
    
    width: 70%;
    height: 130px;
    border-radius: 15px;


}
.card .card-border-top {
    width: 40%;
    height: 4%;
    background: #6b64f3;
    margin: auto;
    border-radius: 0px 0px 15px 15px;
}

.card span {
    font-family: "Oswald";
    font-weight: 600;
    color: white;
    text-align: center;
    display: block;
    padding-top: 10px;
    font-size: 24px;
}




.card button {
    text-align: center;
    font-family: "Oswald";
    padding: 8px 25px;
    display: block;
    margin: auto;
    border-radius: 8px;
    border: none;
    margin-top: 30px;
    background: #6b64f3;
    color: white;
    font-weight: 600;
}

.card button:hover {
    background: #534bf3;
}

#left {
    background: rgba(6, 6, 110, 0.8);
    box-shadow: 1px 5px 60px 0px rgb(1, 1, 102);
}
#mid {
    background: rgba(174, 170, 170, 0.529);
    box-shadow: 1px 5px 60px 0px rgba(174, 170, 170, 0.722);
}

#right {
    background: rgba(179, 12, 12, 0.807);
    box-shadow: 1px 5px 60px 0px rgb(223, 7, 7);
}

#left .card-border-top, #left button {
    background: rgba(1, 1, 102, 0.769);
} 
#mid .card-border-top, #mid button {
    background: rgba(61, 61, 61, 0.595);
} 
#right .card-border-top, #right button {
    background: rgba(149, 11, 11, 0.762);
} 

@media screen and (max-width: 768px) {
    .categories {
        flex-direction: column;
    }
}

