* {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 0;
    margin: 0;
}

body {
    background-color: rgb(17, 17, 17);
    color: white;
    font-size: 20px;
}
a {
    text-decoration: none;
    color: white;
}



/* Home Page */
.main-area {
    height: 100%;
    width: 100%;
    display:flex;
    flex: 1 1 auto;
    background-color: gray;
}

#selection-menu-home-page {
    margin-top: 50px;
    border-radius: 15px;
    height: 80vh;
    width: 70%;
    font-size: 30px;
    font-weight: 900;
    text-align: center;
    /* Flex Menu Buttons*/
    flex-direction: column;
    justify-self: center;
    align-self: center;
    justify-content: flex-start;
    align-items: center;
    padding: 0px 10px 50px;
    row-gap: 10px;
}

.menu-buttons-home-page {
    background-color: rgb(24, 24, 24);
    border: 3px outset rgb(24,24,24);
    border-radius: 20px;
    height: 80px;
    width: 100%;
    color: white;
    font-size: 30px;
    font-weight: 900;
    line-height: 60px;
    text-align: middle;
    text-decoration: none;
    cursor: default;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.08s ease;
    flex-shrink: 1;
    padding: 0 5px;
}
.menu-buttons-home-page:hover {
    background-color: rgb(44, 44, 44);
    border-color: rgb(44, 44, 44);
}
.menu-buttons-home-page:active {
    transform: scale(0.97);
}

/*                      Pages                                */
/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */

header {
    background-color: rgb(13, 7, 19);
    height: 75px;
    width: 100vw;
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

#side-bar-button::before {
    content: "\2630";
}

#side-bar-button {
    background-color: rgb(9, 5, 14);
    border: 1px solid rgb(39, 39, 39);
    font-size: 22px;
    line-height: 35px;
    text-align: middle;
    color: white;
    height: 40px;
    width: 40px;
    margin: 0 20px;
    z-index: 1;
    transition: background-color 0.2s ease;
}
#side-bar-button:hover {
    background-color: rgb(32, 32, 32);
}
.side-bar-label {
    font-size: 16px;
}
#page-title {
    font-size: 36px;
    font-weight: 600;
    height: 55px;
    width: 100vw;
    text-align: center;
    display: flex;
    justify-content: center;
    position: absolute;
    z-index: 0;
}
.page-title-text {
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;

}

aside {
    background-color: rgb(9, 5, 14);
    height: 100vh;
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    left: 0;
    top: 75px;
    row-gap: 25px;
    padding-top: 25px;
}

#side-bar {
    width: 25%;
    transition: transform 0.3s ease-in-out;
    transform: translateX(-100%);
}
#side-bar.open {
    transform: translateX(0%);
}

.page-link {
    color: black;
    display: block;
    width: 80%;
    height: 30px;
    font-size: 15px;
    font-weight: 600;
}

/* End header and side bar */




#main {
    flex-direction: column;
    width: 700px;
    justify-self: center;
    padding-top: 25px;
    row-gap: 1rem;
}

.current-container {
    text-align: center;
    outline: 5px solid rgb(53, 53, 53);
    padding: 15px 0;
}

#current-label {
    justify-self: flex-start;
    margin-left: 100px;
    margin-bottom: 0;
    font-size: 30px;
    font-weight: 900;
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.current-display {
    flex-basis: 100px;
    padding: 2rem 1rem 0;
    font-size: 25px;
    font-weight: 600;
    display: grid;
    grid-template-columns: 50% 50%;
    grid-template-rows: 50px 60px 50px 30px;
    margin: 5px 0 30px;
}
.bubble-display {
    border: 1px solid black;
    border-radius: 10px;
    color: black;
    height: 50px;
    line-height: 50px;
    text-align: middle;
    background-color: white;
}
#name, #muscle-group {
    grid-column-start: 1;
    grid-column-end: 3;
    width: 75%;
    justify-self: center;
}
#muscle-group {
    font-size: 20px;
    margin-bottom: 25px;
}


#sets, #reps, #sets-label, #reps-label {
    width: 50%;
    justify-self: center;
    
}

.labels {
    /* Same as bubble-display so they stay locked to each other*/
    border-radius: 10px;
    color: white;
    height: 35px;
    font-size: 18px;

}

.buttons-container {
    display: flex;
    justify-content: center;
    column-gap: 5%;
}

#skip, #done, #begin {
    border-radius: 10px;
    border: 2px outset rgb(107, 107, 107);
    color: black;
    font-size: 22px;
    font-weight: 900;
    height: 3rem;
    width: 10rem;
}

#begin {
    width: 15rem;
    background-color: rgb(212, 131, 8);
}
#skip {
    background-color: red;
}

#done {
    background-color: green;
}

.completed-container {
    outline: 5px solid rgb(153, 153, 153);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin-top: 0px;
    padding-bottom: 10px;
}

.completed-workouts-title {
    width: 95%;
    text-align: center;
    margin-bottom: 0.2rem;
    padding-bottom: 0.2rem;
    font-size: 25px;
    border-style: solid;
    border-width: 0 0 1px;
    border-color: white;
}

#completed-list {
    display: grid;
    grid-template-columns: 60% 40%;
    width: 95%;
}
.list-right {
    justify-self: end;
}

.hidden {
    display: none;
}

.flex {
    display: flex;
}

@media (max-width: 500px) {
    #main {
        padding: 1%;
        width: 92vw;
    }
    
    #page-title {
        justify-content: center;
        font-size: 30px;
        top: 15px;
    }
    #side-bar {
        width: 38%;
    }
    #begin {
        font-size: 20px;
    }
    #current-label {
        margin-left: 25px;
        margin-bottom: 20px;
    }
    .current-display {
        display: grid;
        grid-template-columns: 46vw 46vw;
        font-size: 24px;
        padding: 0;
        margin-top: 15px;
        row-gap: 0;
    }
    #name, #muscle-group {
        grid-column-start: 1;
        grid-column-end: 3;
        width: 95%;
        justify-self: center;
    }
    #sets, #reps, #sets-label, #reps-label {
        width: 50%;
        justify-self: center;
    }

    #muscle-group, #sets-label, #reps-label {
        margin-top: 2px;
    } 

    .buttons-container {
        column-gap: 15%;
        padding: 0 25px;
    }

    #completed-list {
        font-size: 18px;
    }
    /* Home Page */
.main-area {
    height: 100vh;
    align-items: center;
}

.selection-menu-home-page {
    height: 75vh;
    width: 60vw;
    font-size: 26px;
}

.menu-buttons-home-page {
    font-size: 24px;
}

}