@font-face {
    font-family: "Gotham";
    src: url("fonts/Gotham-Book.otf") format("opentype");
    font-weight: normal;
}
@font-face {
    font-family: "Gotham-bold";
    src: url("fonts/Gotham-Bold.otf") format("opentype");
    font-weight: bold;
}
body {
    font-family: 'Gotham';
    background: #d1e9e1;
}
h1, h2, h3, h4 {
    font-family: 'Gotham-bold';
}
h1 {
    font-size: clamp(24px, 6vw, 80px);
}
.title {
    margin-bottom: 60px;
}
.content {
    background: #fff;
    margin-left: 80px;
    padding: 80px 140px 80px 80px;
    overflow: auto;
}
footer {
    background: #ffed00;
    color: #009fe3;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
}
.footer-title {
    font-size: clamp(24px, 6vw, 40px);
    font-family: 'Gotham-bold';
}
.social {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 0 10px;
}
.social img {
    max-width: 60px;
    max-height: 60px;
    object-fit: contain;
}
.logos {
    max-width: 100%;
    max-height: 170px;
    object-fit: contain;
}
.article {
    word-break: break-word;
}
@media only screen and (max-width: 771px) {
    .title {
        margin-bottom: 20px;
    }
    .content {
        margin-left: 20px;
        padding: 20px 40px 80px 20px;
    }
    .logos {
        max-width: auto;
        max-height: 140px;
        width: auto;
        display: block;
        margin-left: auto;
    }
    .social img {
        max-width: 40px;
        max-height: 40px;
    }
    .footer-title {
        display: none;
    }
}
