* {
    margin: 0;
    padding: 0;
}

/* header {
    height: 80px;
    background-color: #252526;
} */

html {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 24pt;
    background-color: #1E1E1E;
    height: 100%;
}

#back {
    position: absolute;
    z-index: -1;
}

main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

#backDiv {
    background-color: #1e1e1eda;
    display: flex;
    flex-wrap: wrap;
    box-shadow: 0 0 30px #000000;
    border-radius: 30px;
    padding: 30px;
}

.buttons {
    display: block;
    text-decoration: none;
    text-align: center;
    line-height: 150px;
    flex-basis: 300px;
    flex-grow: 1;
    margin: 15px;
    color: #e9e9e9;
    background-color: #1e1e1e;
    border-radius: 30px;    
    box-shadow: -3px -3px 4px rgba(100,100,100,0.6), 3px 3px 4px rgb(0,0,0);
    border-width: 0;
    cursor:pointer;
}

.buttons:active {
    background-color: #1e1e1e;
    box-shadow: inset -3px -3px 4px rgba(100,100,100,0.6), inset 3px 3px 4px rgb(0,0,0);
}

@media screen and (max-width: 600px) {
    .buttons {
        line-height: 100px;
        background-color: #252526e0;
        display: inline-block;
    }
    #backDiv {
        width: 100%;
        text-align: center;
    }
}
@media screen and (max-width: 600px) {
    .buttons {
        line-height: 70px;
    }
}

.git {
    color: #e9e9e9;
    display: flex;
    width: 78px;
    margin: 3px;
    text-decoration: none;
}

.git:hover {
    text-decoration: underline;
}

.git:active {
    color: #bdbdbd;
}

img {
    max-width: 24px;
    max-height: 24px;
    margin-right: 4px;
}

footer {
    display: flex;
    width: 100%;
    background-color: #252526;
    height: 80px;
    font-size: 14pt;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #1e1e1ebe;
    box-shadow: 0 0 30px #000000;
}