/* styling homepage */

.jumbotron {
    background-size: cover;
    color: #000000; /* set the text color to white */
    padding: 100px 0; /* increase the padding for more space */

  }
  
  strong {
    color: #000;
  }
  .jumbotron h1 {
    font-size: 4em; /* increase the font size of the heading */
    margin-bottom: 30px; /* add some margin at the bottom of the heading */
    color: hotpink;
  }
  
  .jumbotron p {
    font-size: 1.5em; /* increase the font size of the paragraph */
    margin-bottom: 30px; /* add some margin at the bottom of the paragraph */

  }

  p {
    max-width: 750px;
    margin: auto;
}

  .jumbotron .btn {
    background-color: #000; /* set the background color of the button */
    border: none; /* remove the button border */
    padding: 10px 20px; /* add some padding to the button */
    font-size: 1.5em; /* increase the font size of the button text */
    text-transform: uppercase; /* make the button text uppercase */
    margin-top: 30px; /* add some margin at the top of the button */
  }

  img {
    border-radius: 50px;
  }