.logo {
    width: 100px;
    height:100px;
}
.title {
    color: #EDEDED;
    margin: 0px;
}
.main {
    margin-bottom: 150px;
}
.card-horizontal {
    display: flex;
    flex: 1 1 auto;
    align-items: center;
}
.card-img-left {
    width: 80px; /* Adjust as needed */
    height: 80px;
    object-fit: cover;
    margin: 10px 0px 10px 10px;
    border-radius: 20px 20px 20px 20px;
}
.card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.card {
    border-radius: 25px 25px 25px 25px;
    background-color: #222222;
    width: 500px;
    height: fit-content;
}
.card-text {
    color: #EDEDED;
    padding: 0px;
    margin: 0px;
}
.content {
    font-size: 20px;
}
.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #171717;
    color: #EDEDED;
}

@media (max-width: 768px) {
    .logo {
        width: 80px;
        height:80px;
    }
    .card-img-left {
        width: 70px;
        height: 70px;
        border-radius: 10px 10px 10px 10px;

    }
    .card-text {
        font-size: 0.9rem; /* Adjust as needed */
    }
    .content {
        font-size: 1rem; /* Adjust as needed */
    }
    .card {
        width: 100%;
        border-radius: 15px 15px 15px 15px;
    }
}