/* Определение шрифта Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
}

/* Встроенные стили для кнопок, чтобы имитировать shadcn/ui */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
    transition-duration: 150ms;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    height: 2.5rem;
    padding: 0 1rem;
}

.btn-outline {
    border: 1px solid currentColor;
    background-color: transparent;
}

.main-bg {
    background: #E5A2C1;
    height: 400px;
}

.text-m {
    margin-top: 90px;
}

.text-color1 {
    color: #ffffff;
}

.specPhoto {
    border-radius: 100%;
}

.cardHeading {
    margin-top: 10px;
    margin-bottom: 0px;
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}



@media screen and (max-width: 479px) {
    .specPhoto{
        width: 250px;
        height: 250px;

    }
}