﻿body {
    font-family: Roboto, "Helvetica Neue", sans-serif;
    background-color: rgb(245, 245, 245);
    word-wrap: break-word;
    color: #000;
    padding: 0;
    margin: 0;
}

header {
    display: flex;
    width: 100%;
    position: sticky;
    left: 0;
    top: 0;
    height: 70px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgb(239, 239, 239);
    background-color: #fff;
    z-index: 1000;
    justify-content: flex-start;
    align-items: center;
}

.head {
    margin-left: 30px;
    display: flex;
    flex-direction: row;
    gap: 20px;
}

footer {
    display: flex;
    width: 100%;
    position: sticky;
    left: 0;
    bottom: 0;
    border-top: 1px solid rgb(239, 239, 239);
    background-color: #fff;
    z-index: 1000;
    height: 80px;
    margin: auto;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.container {
    display: flex;
    flex-flow: column wrap;
    width: 95%;
    max-width: 960px;
    margin: auto;
}

.main {
    display: flex;
    flex-direction: column;
    flex-wrap: inherit;
    align-content: center;
    min-height: 500px;
}

.page-section {
    margin-bottom: 24px;
}

.title-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 16px;
}
