:root {
    --gray-1: #3f3f3f;
    --gray-2: #32353a;
    --gray-3: #25282c;
    --gray-4: #151618;
    --gray-5: #151618;
    --gray-6: #111111;
    --white-1: #eeeeee;
    --white-2: #a9abb3;
    --black-1: #0e1212;
    --black-2: #1d1d1d;

    scroll-behavior: smooth;
}

* {
    font-family: inherit;
    text-decoration: none;
    margin: 0;
    padding: 0;
    -webkit-user-drag: none;
    /*-moz-window-dragging: none;*/
    -webkit-tap-highlight-color: transparent;
}
.schedule-container {
    padding-top: 10rem;
    padding-right: 4rem;
    padding-left: 4rem;
    height: 1000px;
    margin-bottom: 15rem;
}

.schedule-header {
    background-color: var(--black-1);
    height: 75px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.schedule-header h1 {
    margin-bottom: 0;
}

.day-button {
    background-color: var(--black-2);
    outline: none;
    border: none;
    color: var(--white-1);
    font-size: large;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    border-radius: 15px;
}

.active {
    background-color: var(--white-2);
    color: var(--black-1);
    font-weight: bold;
}

.day-button:hover {
    background-color: var(--gray-4);
}

.active:hover {
    background-color: var(--white-2);
    color: var(--black-1);
    font-weight: bold;
}

.schedule-content-container {
    display: flex;
    height: 1000px;
    width: 100%;
}

.schedule-time {
    height: 1000px;
    width: 100px;
    background-color: var(--gray-2);
}

.schedule-time div {
    height: 100%;
    width: 100%;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.schedule-time p {
    margin: 0;
}

.schedule-content {
    height: 1000px;
    width: calc(100% - 100px);
    background-color: var(--gray-4);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
    overflow: hidden;
}

.divider {
    width: 100vw;
    height: 1px;
    background-color: var(--gray-3);
}

.card {
    background-color: var(--gray-3);
    border-radius: 15px;

    gap: 0.5rem;
    position: absolute;
    width: 25%;
    text-align: center;
    outline: 2px solid var(--gray-2);
    outline-offset: -2px;
    margin-left: 5px;
}

.card-content {
    align-items: center;
    display: flex;
    flex-direction: column;
}

.card h5 {
    margin: 20px 5px 0px 5px;
}

.card p {
    margin: 0 2px 0 2px;
    font-weight: 200;
    font-size: small;
}

.second {
    margin-left: calc(25% + 10px);
}

.schedule-time-mobile {
    display: none;
}

.schedule-time-desktop {
    display: flex;
}

/* Day 2 */
.taller-height {
    height: 2600px;
}

@media screen and (max-width: 980px) {
    .schedule-header {
        flex-direction: column;
        height: 125px;
        justify-content: center;
    }
    .schedule-container {
        padding-top: 5rem;
    }

    .schedule-time {
        width: 50px;
    }

    .schedule-content {
        width: calc(100% - 50px);
    }

    #schedule {
        height: 1125px;
    }

    .schedule-time-mobile {
        display: flex;
    }

    .schedule-time-desktop {
        display: none;
    }

    .card h5 {
        margin: 2px 2px 0px 2px;
    }
}
