.TerminalMessage {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.TerminalMessage h1 {
    font-size: 32px;
}

.content {
    padding: 40px;
}

.errorButton {
    font: bold 30px arial, sans-serif;
    line-height: 68px;
    border: 4px solid #6e6e6e;
    border-radius: 18px;
    box-sizing: border-box;
    padding: 0 12px;
    margin-bottom: 20px;
    min-width: 221px;
    background: black;
    align-self: center;
    text-transform: uppercase;
}

.errorButton.reloadButton {
    color: #96cf46;
}

@media (max-width: 287px) {
    .TerminalMessage h1 {
        font-size: 21px;
        margin-top: 0;
    }
    .content {
        padding: 0 10px 20px;
        font-size: 16px;
    }
    .errorButton {
        display: flex;
        flex-direction: column;
        justify-content: center;
        font-size: 15px;
        line-height: 25px;
        border-width: 3px;
        padding: 0 10px;
        margin: 0 50px;
        border-radius: 9px;
        min-width: 180px;
        min-height: 40px;
    }
}