@import url(../fontawesome/css/fontawesome.min.css);
@import url(../fontawesome/css/solid.min.css);

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: gainsboro;
    background: #333;
    height: 100vh;
}

.Main {
    width: 100%;
    padding: 25px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    border: 1px solid #666;
    position: relative;
}

.Main.disabled {

    display: none;
}

.disabled-message {
    width: 100%;
    padding: 25px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    border: 1px solid #666;
    font-family: sans-serif;
}

h1 {
    margin-top: 40px;
    margin-bottom: 10px;
}

img {
    width: 70px;
    margin: 30px auto;
}

.btn {
    border: 0;
    border-radius: 5px;
    margin-top: 25px;
    padding: 10px 15px;
    width: 220px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    color: #333;
    background: #747bff;
}

.top-btns {
    background-color: #555;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 5px 15px;
}

.top-btn {
    border: 1px solid #777;
    border-radius: 5px;
    padding: 10px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-btn:hover {
    background-color: #666;
    /*color: #333;*/
}

