*{box-sizing: border-box;}
body {
    background: #31363C;
    height: 100vh;
    margin:0;

    display: flex;
    justify-content: center;

    color: whitesmoke;
}
.panel {
    position: absolute;
    top: 20vh;
    height: 320px;
    width: 95%;
    max-width: 320px;
    padding: 8px;
    border: 1px solid #5C5C5F;
    border-radius: 16px;
    box-shadow: 0px 0px 0px 1px #000000,rgba(0, 0, 0, 0.27) 0px 0px 0.25em, rgba(0, 0, 0, 0.05) 0px 0.25em 1em;
    background: #2A2E33;
    overflow: hidden;

}
.panel_content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
h1, h2{
    margin:0;
}
.image {
    height: 100%;
    _width: 100%;
    image-rendering: crisp-edges;
    image-rendering: pixelated;
}
.center{
    display: flex;
    justify-content: center;
}
.grow {
    flex-grow: 1;
}
.button {
    height: 24px;
    width: 96px;
    border: 1px solid #595959;
    border-radius: 4px;
    
    border-color: rgba(255, 255, 255, 0.16);
    background: linear-gradient(to bottom, #1e5799 0%,#2989d8 50%,#207cca 51%,#7db9e8 100%);
	cursor: pointer;
    color: whitesmoke;
}
.button:hover{
    background: linear-gradient(to bottom, #3f80cb 0%,#69a7d9 50%,#589cd8 51%,#a4cbe8 100%);
}