.app-main-stage{
    width: 100%;
    align-self: center;
    justify-content: center;
    display: flex;
    padding-top: 2rem;
    padding-bottom: 1rem;
}

.session-card {
    background-image: linear-gradient(to bottom right, #2a2a2a, #272626, #1a1919);
    border: 1px solid white;
    border-radius: 8px;
    padding: 20px;
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.session-card:hover{
    border: 1px solid red; 
  }

.session-content {
    text-align: left;
    padding-bottom: 1rem;
}

.session-topic {
    font-size: xx-large;
    text-align: center;
    color: #fff;
    margin-block-end: 0.83em;
}

.session-times{
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.time{
    display: flex;
    background-color:rgb(159 51 51 / 89%);
    border-radius: 5px;
    width: 9rem;
    height: 3rem;
    align-items: center;
    justify-content: center;
}

.speakers-section {
    border-radius: 10px;
    padding: 1rem;
}

.session-card-body {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.session-card-body i{
    color:#f50000 ;
}

.session-card-body i{
    margin-right: 0.4rem;
}

@media screen and (max-width: 800px) {
    .session-card {
        width: 100%;
    }
}

@media screen and (max-width: 650px) {
    .session-times {
        flex-direction: column;
        gap: .5rem;
    }

    .time {
        width: 100%;
    }
}

@media screen and (max-width: 450px) {
    .session-card {
        width: 17em;
    }

    .session-card-body {
        justify-content: flex-start;
        flex-wrap: wrap;
        margin-left: 0.5rem;
        line-height: 0.6;
    }
}