* {
    font-family: "Roboto Slab", serif;
    font-size: 14px;
    color: rgb(206, 143, 143);
}

p {
    margin: 8px;
}


.card {
    max-width: 960px;
    padding-right: 32px;
}

.heading {
    font-weight: bold;
    padding-top: 32px;
    border-bottom: 2px solid rgb(36, 95, 117);
}

.subhead {
    font-weight: medium;
}

.course {
    margin-top: 0px;
    max-width: 960px;
    padding-right: 32px;
    margin: 0 auto;
}

.hi {
    font-size: 32px;
    font-weight: bold;
}

.per {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    color: rgb(192, 176, 176);
    padding-left: 2px;
    padding-top: 4px;
}

ul {
    list-style-type: circle;
}

li {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    color: rgb(192, 176, 176);
    margin: 8px;
}

#portrait {
    /* border-radius: 8px; */
    margin:8px;
    height: 500px; width: 500px;
}


body {
    background-color: #202124;
    color: rgb(0, 0, 0);
}

.table {
    background-color: rgba(0, 0, 0, 0);
    /* border-radius: 8px; */
    margin: 0 auto;
    border-spacing: 16px;
    margin-top: -36px;
    display: flex;
    padding: 10px;
}

#hours {
    margin: -64px;
    margin-left: 32px;
}

.td1 {
    background-color: #202124;
    padding: 32px;
    width:30%;
    float: left;
}

.td2 {
    background-color: #202124;
    padding: 32px;
    width: 70%;
    float: left;
}

a:link {
    font-family: "Roboto", sans-serif;
    color: rgba(212, 212, 247, 0.8);
    /*font-size:13px;*/
    text-decoration: none;
}

a:visited {
    font-family: "Roboto", sans-serif;
    color: rgba(212, 212, 247, 0.8);
    text-decoration: none;
}


.wrap-collabsible {
    margin-bottom: 1.2rem 0;
  }
  
  input[type='checkbox'] {
    display: none;
  }
  
  .lbl-toggle {
    display: block;
  
    cursor: pointer;
    border-bottom: 2px solid rgb(36, 95, 117);
    border-radius: 7px;
    transition: all 0.25s ease-out;
  }
  
  .lbl-toggle::before {
    content: ' ';
    display: inline-block;
  
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 5px solid currentColor;
    vertical-align: middle;
    margin-right: .7rem;
    transform: translateY(-2px);
  
    transition: transform .2s ease-out;
  }
  
  .toggle:checked + .lbl-toggle::before {
    transform: rotate(90deg) translateX(-3px);
  }
  
  .collapsible-content {
    max-height: 0px;
    overflow: hidden;
    transition: max-height .25s ease-in-out;
  }
  
  .toggle:checked + .lbl-toggle + .collapsible-content {
    max-height: 100vh;
  }
  
  .toggle:checked + .lbl-toggle {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }
  
  .collapsible-content .content-inner {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    color: rgb(192, 176, 176);
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
    padding: .5rem 1rem;
  }


@media only screen and (max-device-width: 480px) {
    #portrait {
        /* border-radius: 8px; */
        margin:8px;
        height: 500px; width: 500px;
        position: relative;
        z-index: 2;
    }
    .td1 {
        background-color: #202124;
        padding: 32px;
        float: left;
        width: 100%;
        position: relative;
        z-index: 4;
    }
    
    .td2 {
        background-color: #202124;
        padding: 32px;
        float: left;
        width: 100%;
        position: relative;
        z-index: 3;
    }
    .table {
        background-color: rgba(0, 0, 0, 0);
        margin: 0 auto;
        border-spacing: 16px;
        margin-top: -36px;
        display: grid;
    }
    .hi {
        position: relative;
        font-size: 32px;
        font-weight: bold;
        z-index: 1;
    }
}