table {
    width: 70%;
    margin: 20px auto;
    border-collapse: collapse;
}
th, td {
    border: 1px solid black;
    padding: 10px;
    text-align: center;
}
th {
    background-color: #9D9D9D;
}
th:first-child, td:first-child {
    width: 15%;
}
th:last-child, td:last-child {
    width: 20%;
}
caption {
    font-size: 1.5em;
    margin-bottom: 10px;
}

#menuToggle {
    display: none;
}

@media (max-width: 800px) {
    

    .navbar {
        display: none;
    }

    .logoDiv {
        position: relative;
        z-index: 2;
    }

    main {
        margin-left: 0;
    }

    #menuToggle {
        display: block;
        position: absolute;
        top: 3.2%;
        left: 3.2%;
        z-index: 3;
    }
    
    #menuToggle input {
        display: block;
        width: 40px;
        height: 32px;
        position: absolute;
        top: -7px;
        left: -5px;
        cursor: pointer;
        opacity: 0;
        z-index: 2;
    }
    
    #menuToggle span {
        display: block;
        width: 33px;
        height: 4px;
        margin-bottom: 5px;
        position: relative;
        background: #cdcdcd;
        border-radius: 3px;
        z-index: 1;
        transform-origin: 4px 0px;
        transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                    background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                    opacity 0.55s ease;
    }
    
    #menu {
        position: absolute;
        width: 300px;
        margin: -100px 0 0 -50px;
        padding: 50px;
        padding-top: 125px;
        background: #ededed;
        list-style-type: none;
        transform-origin: 0% 0%;
        transform: translate(-100%, 0);
        transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
        min-height: 50vh;
    }

    #menu a li img {
        fill: #0D0D0D;
    }

    #menu li {
        padding: 10px 0;
        font-size: 22px;
    }

    #menu a li {
        text-decoration: none;
        color: #0D0D0D;
        transition: 600ms ease;
        display: flex;
        align-items: center;
        font-size: 1rem;
    }

    #menu a li:hover {
        opacity: 1;
        transition: 600ms ease;
    }
    
    #menuToggle input:checked ~ ul {
        transform: none;
    }
}
