:root {
  --primary-bg-color: skyblue;
  --text-color-yellow: yellow;
  --text-color-cyan: cyan;
  --button-bg-color: greenyellow;
  --button-text-color: yellow;
}

/* General Styles */
body {
  background-color: var(--primary-bg-color);
  margin: 0;
  font-family: Arial, sans-serif;
}

/* Hero Text and Carousel Styles */
.hero-text-carusel {
  text-align: center;
  left: 50%;
  color: var(--text-color-cyan);
}

.hero-text button {
  border: none;
  outline: 0;
  display: inline-block;
  padding: 10px 25px;
  color: var(--button-text-color);
  background-color: var(--button-bg-color);
  text-align: center;
  cursor: pointer;
}

/* Main Container */
.main-container {
  padding-top: 55px;
}

/* Index Intro Section */
.index-intro {
  width: 100%;
  background-color: var(--primary-bg-color);
}

.index-intro .jumbotron {
  padding: 30px 0 550px 50px;
  background-image: url('img/header.jpg');
  background-repeat: no-repeat;
  background-size: cover;
}

.index-intro .jumbotron h1 {
  font-size: 30px;
  color: var(--text-color-yellow);
}

.index-intro .jumbotron p {
  font-size: 20px;
  color: var(--text-color-yellow);
}

/* Index Section (Tom, Lucka, Renča) */
.index-section {
  padding: 60px 0 100px;
  width: 100%;
  background-color: var(--primary-bg-color);
}

.index-section p {
  margin: 0 0 0 10px;
  padding-left: 10px;
  font-size: 20px;
}

.index-section .jumbotron p {
  padding: 5px;
  margin: 5px;
  font-size: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .index-intro .jumbotron {
    padding: 20px 0 300px 20px;
    background-size: contain;
  }

  .index-intro .jumbotron h1 {
    font-size: 24px;
  }

  .index-intro .jumbotron p {
    font-size: 16px;
  }

  .index-section {
    padding: 40px 0 60px;
  }
}