
/* SRC: /static/index.css */
html,body {
 margin: 0px;
 padding: 0px;
 width: 100vw;
 height: 100vh;
 overflow: scroll;
}

body {
 display: flex;
 flex-direction: column;

 background-color: #20202a;
 color: #eee;

 font-size: large;
 font-family: monospace;
}

.version {
 position: absolute;
 display: flex;
 text-align: right;
 padding: 0px;
 margin: 0px;

 font-size: small;
}

/* SRC: /static/main.css */
.Home, .Search {
 display: flex;
 justify-content: center;
 align-items: center;



 width: 100vw;
 height: 100vh;
}

.contentBox {
 display: flex;
 flex-direction: column;
 align-items: center;
 text-align: center;
 
 outline: 2px solid whitesmoke;
 padding: 16px;


 min-height: 20%; 

}

.tileBox {
 display: flex;
 justify-content: center;
 padding: 2px;

 width: 100%;

 margin-top: 16px;
}

.homeTile {
 display: flex;
 flex-direction: column;
 margin: 4px;
 padding: 4px;

 justify-content: center;
 outline: 1px solid greenyellow;

 transition: all 0.5s ease-out;
}

.homeTile a {
 color: inherit;
 text-decoration: inherit;

 transition: all 0.5s ease-out;

}

.homeTile:hover {
 outline: 1px solid cyan;
 box-shadow: 2px 2px 5px white;
}

.homeTile a:hover {
 color: cyan;
}

code {
 font-family: monospace;
 white-space: pre;
 background-color: rgba(255, 255, 255, 0.100);
 padding: 4px;
 outline: 1px solid white;
}



.splitter {
 padding: 0px;
 margin: 0px;
 width: 100%;
 height: 2px;
 background-color: white;

}

a, a:link, a:visited {
 color: inherit;
 text-decoration: initial;
 transition: color 200ms ease; 
 transition: text-shadow 100ms ease;
}

a:hover {
 color: cyan;
}

a:link:active {
 color: cyan;
 text-shadow: 5px 5px 15px cyan;
}

/* SRC: /static/homepage.css */
.tileBox {
 display: flex;
 justify-content: center;
 padding: 2px;

 width: 100%;

 margin-top: 16px;
}

.homeTile {
 display: flex;
 flex-direction: column;
 margin: 4px;
 padding: 4px;

 justify-content: center;
 outline: 1px solid greenyellow;

 transition: all 0.5s ease-out;
}

.homeTile a {
 color: inherit;
 text-decoration: inherit;

 transition: all 0.5s ease-out;

}

.homeTile:hover {
 outline: 1px solid cyan;
 box-shadow: 2px 2px 5px white;
}

.homeTile a:hover {
 color: cyan;
}

.Home {
 font-size: larger;
}

footer {
 display: flex;
 justify-content: space-evenly;
 padding: 0.5rem;
 font-size: small;
}

footer > a {
 margin: 0em 1em;
}

.About {
 display: flex;
 justify-content: center;
 text-align: center;
}

.About a:hover {
 color: cyan;
}

.About a {
 color: skyblue;
}

