.title {
    color: #3d3d3d;
    font-family: sans-serif;
}
.body {
    color:cornflowerblue;
    font-family: monospace;
    text-align: center;
    font-size: 10px;
}
.button {
    background-color: #2c2e3a;
    border: none;
    color: #3a3a3a;
    padding: 10px 60px 10px 60px;
    text-decoration: none;
    font-size: 14px;
    font-family: "Helvetica Neue",Arial,sans-serif;
    border-radius: 9px;
    transition: 0.5s;
    
}
.button:hover {
    transition: 0.5s;
    box-shadow: 0 6px 9px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
    color: #64646a;
}
.button_container {
}
.body_container {
    border: 16px solid black;
    position: absolute;
    box-sizing: border-box;
    height: 100%;
    width: 100%;
    display: grid;
    align-items: center;
    align-content: center;
    text-align: center;
    
}
body {
    background: #111e36;
    margin: 0px;
    padding: 0px;
}