html {
    margin: 0;
    padding: 0;
}

body {
    margin: 0 auto;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    max-width: 1920px;
}

.top-bar {
    background: #434d59;
    padding: 0 10px;
    height: 69px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.top-bar--name {
    color: #fff;
    text-decoration: none;
    margin-left: 10px;
}

.content {
    background: url('/images/bg.jpg');
    background-position: top center;
    background-repeat: no-repeat;
    height: calc(100vh - 69px);
    max-height: 644px;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.exit-text{
    padding: 10px 20px;
    width: 80%;
    background: #fff;
    border-radius: 4px;
}
.center{
    text-align: center;
}
