@font-face {
    font-family: 'Century Gothic Regular';
    src:
        url('../fonts/CenturyGothic.woff2') format('woff2'),
        url('../fonts/CenturyGothic.woff') format('woff'),
        url('../fonts/CenturyGothic.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Century Gothic Bold';
    src:
        url('../fonts/CenturyGothic-Bold.woff2') format('woff2'),
        url('../fonts/CenturyGothic-Bold.woff') format('woff'),
        url('../fonts/CenturyGothic-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

body {
    margin: 0;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Century Gothic Regular', sans-serif;
    text-align: center;
}

.logo {
    width: 80px;
    margin-bottom: 15px;
}

.brand {
    font-size: 24px;
    font-family: 'Century Gothic Bold', sans-serif;
    margin-bottom: 10px;
}

.description {
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
}

.categories {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
    font-family: 'Century Gothic Bold', sans-serif;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.social-links img {
    width: 24px;
    height: 24px;
}

.contact {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-label {
    font-family: 'Century Gothic Bold', sans-serif;
    font-size: 12px;
    color: #666;
}

.contact-email {
    font-size: 14px;
    color: #333;
    text-decoration: none;
}