@import url(https://fonts.googleapis.com/css?family=Lato:100,300,400,700);
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  background: #333;
  font-family: "Lato", sans-serif;
  color: #ddd;
  font-weight: 300;
}

.container {
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

.quick-fact {
  margin-top: 120px;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 20px;
}
.quick-fact p {
  margin: 0;
}
.quick-fact__img {
  margin-top: -120px;
  margin-bottom: 20px;
  text-align: center;
}
.quick-fact__img img {
  max-width: 100%;
  height: auto;
  border-radius: 34% 66% 70% 30%/30% 30% 70% 70%;
  box-shadow: 20px 10px 0 -5px rgba(255, 255, 255, 0.5), -2px 15px 0 -5px rgba(255, 255, 255, 0.5);
}
@media (min-width: 768px) {
  .quick-fact {
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 40px 0;
    padding: 20px 40px;
  }
  .quick-fact h2 {
    margin: 0;
    font-size: 1.1em;
  }
  .quick-fact__img {
    flex: 0 0 auto;
    max-width: 20%;
    margin-top: auto;
    margin-bottom: auto;
    margin-left: -60px;
  }
  .quick-fact__content {
    display: flex;
    align-items: center;
    width: 100%;
  }
  .quick-fact__title {
    border-right: 1px solid #ccc;
    flex-basis: fit-content;
    margin-right: 20px;
    padding-right: 20px;
  }
  .quick-fact__desc {
    flex: 1 0 66.6666666667%;
  }
}




body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
}

header {
    background-color: #222;
    padding: 20px;
    text-align: center;
    border-bottom: 3px solid #ff0;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
    color: #ffbd59;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav ul li {
    margin: 0;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2em;
}




#rides, #services, #contact {
    padding: 20px 0px;
    text-align: center;
}

#rides h2, #services h2, #contact h2 {
    font-size: 1.2em;
    color: #ffbd59;
}



@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}


#contact {
    background-color: #666;
    color: #fff;
}

#contact form {
    display: flex;
    flex-direction: column;
    align-items: center;
}


#contact form button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #ffbd59;
    color: #000;
    font-size: 1.2em;
    cursor: pointer;
    transition: background-color 0.3s;
}

#contact form button:hover {
    background-color: #ff0;
}

footer {
    background-color: #222;
    text-align: center;
    padding: 20px;
    border-top: 3px solid #ffc700;
}

footer p {
    margin: 0;
    color: #fff;
}









#button {
  display: inline-block;
  background-color: #FF9800;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color .3s, 
    opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}
#button::after {
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 2em;
  line-height: 50px;
  color: #fff;
}
#button:hover {
  cursor: pointer;
  background-color: #333;
}
#button:active {
  background-color: #555;
}
#button.show {
  opacity: 1;
  visibility: visible;
}

/* Styles for the content section */

.content {
  width: 77%;
  margin: 50px auto;
  font-family: 'Merriweather', serif;
  font-size: 17px;
  color: #6c767a;
  line-height: 1.9;
}
@media (min-width: 500px) {
  .content {
    width: 43%;
  }
  #button {
    margin: 30px;
  }
}
.content h1 {
  margin-bottom: -10px;
  color: #03a9f4;
  line-height: 1.5;
}
.content h3 {
  font-style: italic;
  color: #96a2a7;
}