@font-face {
    font-family: "Times New Roman";
    src: url('../polices/times_new_roman.ttf');
}
@font-face {
    font-family: "SF";
    src: url('../polices/sfui.ttf');
}
@font-face {
    font-family: "SF bold";
    src: url('../polices/sfui_bold.ttf');
}

:root {
    --dore: #D79A10;
    --beige: #FFFCE1;
    --text-color: #000000;
    --text-color-light: #595959;
    --gray-lines: #dfdfdf;
    --bg-color: #f5f5f5;
    --blue: #2383e2;
    --blue-bg: #e7f3f8;
}

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

a:focus {
    outline: none;
}

/* header */
.header {
    height: 80px;
    background-color: var(--dore);
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.5);
}
.header div {
    display: inline-block;
    height: 80px;
    vertical-align: top;
}
.header img {
    height: 70px;
    margin: 5px;
}
.header h1 {
    color: var(--beige);
    font-weight: normal;
    margin-top: 7px;
    margin-left: 10px;
    font-size: 60px;
    font-family: "Times New Roman";
}
.header h1 a {
    text-decoration: none;
    color: var(--beige);
}
#fr {
    font-size: 0.5em;
}

/* content */
.content {
    padding: 50px;
    font-family: "SF";
}
.center {
    text-align: center;
}
.content h1 {
    padding-bottom: 20px;
    color: var(--dore);
    font-family: "SF bold";
    font-size: 50px;
}
.content h2 {
    padding-bottom: 20px;
    font-family: "SF bold";
    font-size: 30px;
}
.content h2 a {
    color: black;
}
.content h2 a:hover {
    text-decoration: underline;
}
.content h2 span {
    font-family: "SF";
    font-weight: normal;
}
.content p {
    font-family: "SF";

}
.content a {
    text-decoration: none;
}
.content .a {
    color: black;
    color: var(--dore);
    font-family: "SF";
}
.content .a:hover {
    text-decoration: underline;
}
.content img.logo {
    width: 50%;
    max-width: 200px;
    margin-top: 50px;
}

/* center-div */
.center-div {
    margin: auto;
    max-width: 500px;
    width: 90%;
    border: 1px solid var(--gray-lines);
    border-radius: 5px;
    padding: 20px;
}
.center-div p {
    color: var(--text-color-light);
    font-size: 14px;
    text-align: left;
}
.center-div form {
    max-width: 300px;
    margin: auto;
}