@media (min-width: 1101px) {
    body {
    background-color: #032029;
    color: rgb(166, 182, 182);
    padding-left: 20%;
    padding-right: 20%;
    padding-top: 30px;
    font-family: 'IBM Plex Mono';
    line-height: 2;
    font-weight: 300;
    font-size: 16px;
    }

    h1{
        font-weight: bold;
        letter-spacing: 1px;
        font-size:50px;
    }

    #header{
        max-height: 100px;
    }

    .table {
        display: table;
        width: 100%;
        margin-bottom: 50px;
    }
}

@media (max-width: 1100px) {
    body {
        background-color: rgb(3, 32, 41);
        color: rgb(166, 182, 182);
        padding-left: 10%;
        padding-right: 10%;
        padding-top: 10px;
        font-family: 'IBM Plex Mono';
        line-height: 2;
        font-weight: 300;
        font-size: 16px;
    }

    h1{
        font-weight:bolder;
        letter-spacing: 1px;
        font-size:50px;
    }

    #header{
        max-height: 200px;
    }

    .table {
        display: table;
        width: 100%;
        margin-bottom: 100px;
    }
}


.table > div { 
    display: table-row; 
}

.table > div > div { 
    display: table-cell;
    vertical-align: middle;
}


hr{
    color: rgba(110, 128, 128, 0.065)
}

 /* specific ul class for nav bar (no dots and two column alignment) */
.nav_ul {
    -moz-column-count: 2;
    -moz-column-gap: 10px;
    -webkit-column-count: 2;
    -webkit-column-gap: 10px;
    column-count: 2;
    column-gap: 10px;
    padding: 10px;
    list-style-type:none;
}

article{
    padding-top: 10px;
    padding-bottom: 10px;
}

h2{
    font-weight: bold;
    letter-spacing: 1px;
}

h3{
    font-weight: bold;
    letter-spacing: 1px;
}

/* link formatting */
a:link, a:visited{
    color: rgb(32, 118, 199);
    text-decoration: none;
    transition: 0.5s;
}

a:link:hover, a:visited:hover{
    color: rgb(122, 179, 233) ;
    font-weight: 900;
    font-size: 110%;
}

half-star {
    --color-full: rgb(32, 118, 199);
    --color-empty: #dddddd00;
    --ratio: 50%;
    font-size: 30px;
  
    color: var(--color-empty);
    background: linear-gradient(
      to right,
      var(--color-full),
      var(--color-full) var(--ratio),
      var(--color-empty) var(--ratio),
      var(--color-empty)
    );
    -webkit-background-clip: text;
    background-clip: text;
  }

q{
    color: rgb(32, 118, 199);
    opacity: 70%;
}