

body {
background: #aaff00;
background-image: url(/img/glowingsea.png);
background-repeat: no-repeat;
margin: 10em;
font-family: 'Courier New', monospace;
font-weight: bold;
}

::-webkit-scrollbar {
    display: none;
}

th,
td {
  border:1px solid #108b4c;
  padding: 5px;
  text-align: center;
}

.page {
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;
margin: auto;
}

.content {
grid-area: "content";
grid-column: left;
grid-row: top;
grid-row-end: 3;
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;
}

.logo {
grid-area: "logo";
grid-column: right;
grid-row: top;
}

.logoimg {
    width: 100%;
    height: auto;
    z-index: 1;
}

.sidebar {
grid-area: "sidebar";
grid-column: right;
grid-row: bottom;
background-color: transparent;
display: flex;
flex-direction: column;
align-items: center;
}

a.button {
    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.button: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;
}