/*first display*/
/*first element selector*/
body{
    background-image: url("images/background.jpg");
    display: flex;
}
img {
    width: 250px;
    height: 250px;
    border-radius: 20%;
}
/*first pseudoclass*/
img:hover {
    opacity: 0.5;
}
h1 {
    letter-spacing: 5px;
}
h3, h2, h4, h5, h6 {
    letter-spacing: 2px;
}
/*first box model*/
* {
    color: brown;
    margin: 2px;
    padding: 3px;
    font-family: 'Times New Roman', Times, serif;
}
a {
    color: black;
}
a:visited, a:active {
    text-decoration: line-through;
}
a:hover {
    cursor: pointer;
    color: brown;
}
/*first css class selector*/
.hint {
    background-color: rgb(237, 121, 121);
    position: absolute;
    right: 0;
    top: 0; 
}
/*first id selector*/
#fallback-message {
    display: none;
}
#forma #submit, #forma #nameForma{
    color: red;
    width: 150px;
    height: 40px;
    text-align: center;
}
#submit:hover, input[type="radio"]:hover {
    background-color: brown;
    cursor: pointer;
}
.step {
    background-color: beige;
    border: 2px;
    border-style: dotted;
    border-color: brown;
    width: 95vw;
    height: 95vh;
}
#intro, #pitanje-true-false, #asq-multi-choice-q, #asq-order-q, #cetvrtiSlajdLekcije, #asq-rating-qQ, #asq-buckets-qX{
    display: flex;
    flex-direction: column;
    text-align: center;
}
hr {
    color: brown;
}
 #drugiSlajdLekcije, #treciSlajdLekcije, #petiSlajdLekcije, #sestiSlajdLekcije, #asq-text-input-q, #asq-css-select-q, #sedmiSlajdLekcije {
    display: flex;
    text-align: center;
    align-items: center;
}
#c {
    display: flex;
}
#forma {
    margin-left: 200px;
}
/*css icon*/
#icon {
    position: absolute;
}
/*css liste*/
ul li {
  list-style-type: square;
  list-style-position: inside;
  background: #fff8f6;
}
/*css tabele*/
table td {
    border: 1px solid;
}
table th {
    background-color: wheat;
}
/*first pseudoelement*/
h1::first-letter {
    font-size: larger;
}
#down::after {
    content: " Let's start!";
    font-weight: bold;
}
/*css counters*/
#forCounter1 {
    counter-reset: brojac;
}
#forCounter2 {
    counter-increment: brojac;
}
#forCounter2::before, #forCounter1::before {
    content: "*QUESTION"  counter(brojac) "  ";
    background-color: #fff8f6;
    font-style: italic;
    text-transform: lowercase;
}
/*css gallery*/
#gallery {
    display: flex;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
    gap: 10px;
}
#gallery:hover {
    border: 1px solid #777;
}
#gallery img {
    border: 2px solid brown;
    transition: transform 0.3s;
}
#gallery img:hover {
  transform: scale(1.05); /* uvecava */
}
/*css navigation bar*/
.topnav, .footer {
  overflow: hidden;
  background-color: rgb(183, 138, 138);
  text-align: center;
}
.topnav a, .footer a, .footer p {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}
.topnav a:hover, .footer a:hover {
  background-color: #ddd;
  color: brown;
}
/*website layout prviSlajdLekcije*/
.header {
  background-color: #f8efef;
  text-align: center;
  padding: 20px;
  max-height: 250px;
  margin-top: 0;
  padding-top: 0;
  margin-bottom: 20px;
}
#prviSlajdLekcije .topnav, #prviSlajdLekcije .footer{
    padding: 0;
    margin: 0;
}
#prviSlajdLekcije .topnav, #poslednja .topnav {
    margin-bottom: 20px;
}
#prviSlajdLekcije .footer, #poslednja .footer {
    margin-top: 20px;
}
.containerContent {
    display: flex;
    flex-direction: row;
    gap: 20px;
    max-height: 200px;;
}
.containerContent img, #drugiSlajdLekcije img{
    height: 100px;
    width: 150px;
    display: block;
    margin: auto;
}
.content {
  flex: 1; /* ili odredi širinom, npr. width: 100px; */
  max-width: 300px;
}
.mainContent {
  max-width: 500px;
  margin-left: 100px;
  margin-right: 100px;
}
.content, .mainContent {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}
#prviSlajdLekcije {
    text-align: center;
}
#drugiSlajdLekcije .topnav, #sestiSlajdLekcije .topnav {
    max-width: 150px;
    margin: 0;
}
#sestiSlajdLekcije #pt {
    max-width: 400px;
}
#sestiSlajdLekcije #pt2 {
    max-width: 500px;
}
#drugiSlajdLekcije .footer, #sestiSlajdLekcije .footer, #gallery .footer{
    max-width: 130px;
    padding: 0;
    margin: 0;
}
#drugiSlajdLekcije #h, #drugiSlajdLekcije #j, #drugiSlajdLekcije #k, #drugiSlajdLekcije #l {
    max-width: 350px;
}
#drugiSlajdLekcije img {
    margin-top: 10px;
    margin-bottom: 10px;
}
#sedmiSlajdLekcije span {
    max-width: 400px;
}
#gallery .footer {
    max-width: 120px;
    max-height: 400px;
}
#gallery .topnav {
    max-height: 80px;
}
#asq-buckets-Two h4 {
    text-align: center;
}
#sedmiSlajdLekcije .footer {
    max-width: 150px;
}
#asq-buckets-qX, #asq-highlight-q {
    margin: 0;
    padding-top: 0;
}
#prviSlajdLekcije {
    margin-top: 0;
    padding-top: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}
#poslednja .topnav{
    margin-top: 100px;
}
#drugiSlajdLekcije {
    margin-left: 0;
    margin-right: 0;
}
#prviSlajdLekcije hr {
    margin-bottom: 5px;
}