body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.content{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.content .opis{
    width: 95%;
}
.content .vprasanja{
    width: 95%;
}

.vprasanje-gumb{
    color: black;
    font-size: 1em;
    border: 3px solid black;
    border-width: 2px;
    border-radius: 10px;
    padding: 10px;
    background-color: lightblue;
    transition: 0.3s;
    width: 100%;
    max-width: 300px;
}

.vprasanje-gumb:hover{
    background-color: darkblue;
    color: white;
    cursor: pointer;
}

p {
  opacity: 1;
  transition: opacity 0.25s ease;
}


@media (max-width:480px)  {
    .content .opis{
        text-align: center;
    }
}