* {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 15px;
    line-height: 24px;
}

a {
    text-decoration: none;
}

body {
    background-color: rgba(246, 246, 246, 1);
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 35px;
}

.header_title {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.title {
    font-weight: 500;
    font-size: 32px;
    line-height: 44px;
}

.title_content {
    font-weight: 550;
    font-size: 24px;
    line-height: 32px;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-left: 24px;
    padding-right: 24px;
    height: 550px;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    position: absolute;
    width: 240px;
    height: 194px;
    left: calc(50% - 240px / 2);
    top: calc(50% - 194px / 2);
}

footer {
    display: flex;
    position: absolute;
    top: 606px;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 36px;
    text-align: center;
    color: #999;
    background: #F6F6F6;
}