@import "./roboto.css";

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: auto;
    font-family: "Roboto Light", sans-serif;
}

.header-and-navigation {
    min-height: 100%;
    padding-bottom: 70px;
}

.header {
    background-color: #99a6b5;
    padding: 0 75px;
    height: 300px;
    position: relative;
    overflow: hidden;
}

.header-info {
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    justify-content: space-between;
    position: absolute;
    top: 80px;
    bottom: 20px;
    z-index: 100;
}

.header-info--status {
    color: #ffffff;
    font-size: 40px;
    margin: 0;
    line-height: 40px;
}

.header-info--logo {
    height: 85px;
    width: 282px;
}

.header-image {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 75px;
}

.header-status-code {
    font-size: 420px;
    color: #A3AFBD;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 75px;
    display: flex;
    align-items: center;
}

.navigation {
    padding: 0 75px;
}

.navigation-info {
    color: #8b8b8b;
    font-size: 21px;
    margin: 40px 0;
    line-height: 30px;
}

.navigation-info-section {
    margin-bottom: 20px;
}

.navigation-info-section:last-child {
    margin-bottom: 0;
}

.navigation-btn {
    width: 180px;
    color: #a4a0a0;
    background: #ffffff;
    border: 1px solid #a4a0a0;
    display: inline-flex;
    height: 40px;
    padding: 10px 15px;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    outline: none;
    font-size: 14px;
    font-family: "Roboto Bold",sans-serif;
    font-weight: 400;
    user-select: none;
    cursor: pointer;
    text-decoration: none;
}

.navigation-btn:hover {
    color: #737373;
    border: 1px solid #737373;
}

.navigation-btn:nth-of-type(1) {
    margin-right: 10px;
}

.footer {
    font-size: 12px;
    color: #808080;
    padding: 0 75px 45px;
    margin-top: -60px;
}