@font-face {
    font-family: 'CabinetGrotesk-Bold';
    src: url('/fonts/CabinetGrotesk-Bold.woff2') format('woff2'),
    url('/fonts/CabinetGrotesk-Bold.woff') format('woff'),
    url('/fonts/CabinetGrotesk-Bold.ttf') format('truetype');
    font-weight: 700;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi-Medium';
    src: url('/fonts/Satoshi-Medium.woff2') format('woff2'),
    url('/fonts/Satoshi-Medium.woff') format('woff'),
    url('/fonts/Satoshi-Medium.ttf') format('truetype');
    font-weight: 500;
    font-display: swap;
    font-style: normal;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Satoshi-Medium", sans-serif;
    background-color: white;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.centered-text {
    color: black;
    text-align: center;
    margin-bottom: 20px;
    margin-left: 10px;
    margin-right: 10px;
    font-family: "CabinetGrotesk-Bold", serif;
}

.city-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    margin-left: 10px;
    margin-right: 10px;
    font-size: 18px;
    font-family: "Satoshi-Medium", sans-serif;
}

.row {
    display: flex;
    justify-content: center;
    width: 100%;
}

.column {
    flex: 1;
    text-align: center;
    margin: 5px;
    color: gray;
}

.contact-info {
    margin-top: 30px;
    font-size: 14px;
    text-align: center;
    font-family: "Satoshi-Medium";
    color: gray;
}

.logo-container {
    text-align: center;
    margin-top: 10px;
}

.logo {
    width: 80px;
    height: auto;
}

@media (max-width: 768px) {
    .centered-text {
        font-size: 18px;
    }

    .row {
        flex-direction: column;
    }

    .column {
        font-size: 16px;
        margin: 8px 2px;
    }

    .contact-info {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .centered-text {
        font-size: 16px;
    }

    .row {
        flex-direction: column;
    }

    .column {
        font-size: 14px;
        margin: 8px 2px;
    }

    .contact-info {
        font-size: 12px;
        margin-top: 30px;
    }
}