
::-webkit-scrollbar {
    display: none;
}

body {
    background: #11801a;
    background-image: url(/img/glowingsea.png);
    background-size: cover;
    background-repeat: no-repeat;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    margin: 2em auto;
}

main {
border-radius: 20px;
color: #108b4c;
border: 2px solid #108b4c;
padding: 1em;
background: linear-gradient(rgba(12, 5, 15, 0) 50%, rgba(0, 0, 0, 0.200) 50%);
background-color: #28fc8d;
z-index: 2;
background-size: 100% 2px, 3px 100%;
overflow-y: scroll;
}

aside {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    img {
    width: 100%;
    height: auto;
    z-index: 1;
    }
}

nav {
    a {
    color: #108b4c;
    background: linear-gradient(rgba(12, 5, 15, 0) 50%, rgba(0, 0, 0, 0.200) 50%);
    background-color: #28fc8d;
    z-index: 2;
    background-size: 100% 2px, 3px 100%;
    border: 2px solid #108b4c;
    padding: 0.5em;
    margin: 1em;
    transition: transform 0.5s;
    border-radius: 5px;
    text-align: center;
    width: 5em;
}

    a:hover {
    background: linear-gradient(rgba(12, 5, 15, 0) 50%, rgba(0, 0, 0, 0.200) 50%);
    background-color: #28fc8d;
    background-size: 100% 2px, 3px 100%;
    color:#ffffff;
    transform: scale(1.2);
    text-align: center;
}
}

a {
color: #108b4c;
text-decoration: none;
}

a:hover {
color: #ffffff;
text-decoration: underline;
}

a:visited {
color: #7fffa9;
text-decoration: none;
}

.popup {
    border-top: 2px solid #28fc8d;
    border-left: 2px solid #28fc8d;
    width: 10em;
    height: 2em;
    z-index: 1;
}

th,
td {
  border: 1px solid #108b4c;
  padding: 5px;
  text-align: center;
}

hr {
    color: #108b4c;
    border-style: solid;
}

@media only screen and (width >= 601px) {

body {
    display: grid;
grid-template-columns: [left] 3fr [right] 1fr;
grid-template-rows: [top] 2fr [bottom] 3fr;
grid-template-areas:
    "content logo"
    "content sidebar";
grid-gap: 1em;
width: 70vw;
height: 40vh;
}

aside img {
    grid-row: top;
    grid-column: right;
}

nav {
    grid-row: bottom;
    grid-column: right;
    display: flex;
    flex-direction: column;
}

main {
    grid-row: top / span 2;
    grid-column: left;
}
}

@media only screen and (max-width: 600px) {

body {
        display: flex;
        flex-direction: column-reverse;
        margin: 0.5em;
}

aside {
    img {
        width: 20%;
        height: auto;
    }
    margin-bottom: 1em;
}

nav {
    display: flex;
    flex-direction: row;
}

table {
  display: block;
  flex-direction: column;
  column-count: 2;
}
    
th, td {
  display: flex;
  flex-direction: column;
  column-count: 2;
}
}