@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

.hero
{
    display: flex;
    flex-direction: column; /* Ustawiamy elementy w kolumnie */
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center; /* Wyśrodkowanie tekstu */
}

.hero_h1{
    font-size: 36px;
}

.hero_p{
    color: #767676;
}

.info{
    display: flex;
    justify-content: center;
    align-items: center;
}


.card{
    width: 100%;
    max-width: 1100px;
    margin: 16px;
    background-color: #F7F7F7;
    padding: 24px;
    border-radius: 24px;
}

.question{
    padding-top: 16px;
}

.answer{
    color: #767676;
    padding-bottom: 16px;
}

.line{
    width: 100%;
    height: 1px;
    background-color: #DBDBDB;
    border-radius: 8px;
}