html, body {
  background-color: #d4e157;
  color: #222; /* dark gray text */
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Roboto', 'Segoe UI Emoji', 'Noto Color Emoji', sans-serif;
  font-weight: 100;
}

.container {
  margin: 0 auto;
  max-width: 940px; 
  padding: 0 15px;
}

.header .container {
  position: relative;
  top: 0px;
}

.header h1 {
  color: green;
  text-shadow:
   -1px -1px 0 white,
     1px -1px 0 white,
    -1px  1px 0 white,
     1px  1px 0 white;
  line-height: 1.1; 
  font-size: 36px;
  margin-top: 0px;
  margin-bottom: 10px;
  text-transform: uppercase; 
}

nav a {
  margin-right: 50px;
  font-weight: 500;
}

nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 30px;
}

@media (min-width:850px) {
  .header h1 {
    font-size: 120px;
  }
}

p {
  font-weight: 500;
  color: #333;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.btn {
  color: #fff !important;
  background: #000;
  padding: 10px 40px;
  text-decoration: none; 
  transition: background .5s; 
}

.nav { 
  background: #000;
  height: 80px; 
  width: 100%;
}

.nav ul {
  height: 120px;
  list-style: none;
  margin: 0 auto; 
  padding: 0;
}

.btn:hover, .nav ul li:hover {
  background: #117bff;
  cursor: pointer; 
  transition: background .5s;  
}

.main .container {
  margin: 80px auto;
}

.main img {
  float: left;
  margin: 50px 80px 50px 0 !important;
}

.jumbotron {
  background-color: #f0e68c;
  position: relative;
  padding: 60px 20px 65px;
  border-radius: 8px;
}

.jumbotron-list {
  position: absolute;
  top: 90px;          /* pulls up the list */
  left: 540px;         /* nudges list left */
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.jumbotron-list li {
  color: sandybrown;
  text-shadow:
    -1px -1px 0 white,
     1px -1px 0 white,
    -1px  1px 0 white,
     1px  1px 0 white;
  display: block;
  height: 30px;
  line-height: 1.6;
  margin-bottom: 16px;
  list-style-type: disc;
  transition: background .5s;
  position: relative;
  padding-left: 2.5em;
  font-size: 18px;
}

.jumbotron-list li::before {
  content: "🌟";
  position: relative;
  left: 0em;
  top: 0;
  color: gold;
  font-size: 1em;
}

.jumbotron .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

h2 {
  color: #2e3b4e;
  font-size: 32px;
  margin-top: 0px;
  margin-bottom: 40px;
  text-align: center;
}
.jumbotron p {
  color: #fff; 
  text-align: right; 
}

.jumbotron .btn {
  margin: 10px 0 0;
  float: right; 
}

.hero-img {
  width: 100%;
  max-width: 800px;
  height: auto;
  margin-bottom: 0;
  display: block;
  margin: 0 auto;
}

.footer {
  background: #f0e68c;
  padding: 20px 0 50px;
  color: green;
}

.footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-links {
  color: #fff;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 10px;
  text-align: center;
}

.footer-links a,.footer-copy {
  font-weight: 500;
  color: #117bff;
  text-decoration: none;
  margin: 10px;
}

.footer-links a:hover {
  color: #ccc;
  text-decoration: underline;
}
 
@media (max-width: 500px) {
  .header h1 {
    font-size: 50px;
    line-height: 64px !important;
  }

  .main, .jumbotron {
    padding: 0 30px;
  }

  .main img {
    width: 100%;
  }
}

@media (max-width: 500px) {
  .container {
    max-width: 100%;
    padding: 0 20px;
  }

  .jumbotron-list {
    position: static;
    transform: translate(-20px, 500px);
    padding-left: 0;
    margin-top: 1rem;
  }

  nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  nav a {
    margin-right: 0;
    font-size: 16px;
  }
}