.header {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 60px;
    position: fixed;
    top: 0;
    border-bottom: 1px solid #cacaca;
    background-color: #fafafa;
}

.header .logo {
    flex: 0 0 auto;
    width: 200px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header .logo a {
    color: #1e9fff;
    font-size: 20px;
}

.header .label {
    flex: 1 1 auto;
    height: 60px;
}

.header .menu {
    flex: 0 0 auto;
    width: 420px;
    height: 60px;
}

.body {
    color: #1e9fff;
    text-align: center;
    font-weight: 700;
    height: 100vh;

    display: flex;
    flex-direction: column;
}

.body .center{
    padding-top: 120px;
    flex: 1 1 auto;
}

.body .footer {
    padding: 10px 0px;
    text-align: center;
    color: #4d4d4d;
    height: 40px;
}

.body .logo {
    font-size: 80px;
}

.body .title {
    font-size: 30px;
}

.body .description {
    font-size: 30px;
}

.body .bts {
    padding: 20px 0;
}

