/*Desktop Version*/
@media screen and (min-width: 1400px) {
body{
  font-family: "Mulish", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  background-image: url("backdrop_mobile.jpg");
  background-size: 100% 55%;
  background-repeat: no-repeat;
  background-position: center top;
}

h1 {
  display: flex;
  text-align: center;
  justify-content: center;
    font-weight: 500;
  color:rgba(0, 0, 0, 0.612);
  text-shadow: 2px 2px 4px rgb(119, 20, 20);
  font-size: 45px;
  margin-top: 200px;
}

p {
  margin: auto;
  text-align: center;
  font-size: 27px;
  justify-content: center;
  padding: 4px;  
}



.imagebox {
  display: flex;
  justify-content: center;
  border-radius: 10px;
  align-items: center;
  background-color: rgb(199, 199, 199);
  width: 100%;
  height: 240px;
  margin-top: 1100px;
  overflow: hidden;
}


.bodyphotos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  width: fit-content;
}

.bodyphotos img{
  border-radius: 10px;
  box-shadow: 3px 3px 5px rgb(0, 0, 0);
  animation-iteration-count: infinite;
  animation-name: carousel;
  animation-duration: 20s;
  transition: ease-in-out 0.5s;
  overflow: hidden;
  width: 320px;
  height: 195px;
}

@keyframes carousel {
  0% {
    transform: translateX(0%);
  }
  
  20% {
    transform: translateX(-150%);
  }
  50% {
    transform: translateX(-200%);
  }
  75% {
    transform: translateX(-250%);
  }
  100% {
    transform: translateX(250%);
  }
  
}

.carousel:hover {
  animation-play-state: paused;
}

.backdrop {
  background-color: rgba(0, 0, 0, 0.755);
  width: 100%;
  height: auto;
  overflow: hidden;
}

.Specifications {
  font-size: 40px;
  margin: auto;
  padding-top: 30px;
  text-align: center;
  display: flex;
  justify-content: center;
  color: white;
}

.Specifications img {
  margin-left: 10px;
  vertical-align: middle;
  display: inline-flex;
  filter: invert(100%);
}



.specs {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.specs ul {
  display: flex;
  flex-direction: column;
  font-size: 25px;
  text-align: center;
  list-style: none;
  padding: 10px;
  justify-content: center;
  background-size: cover;
  background-color: rgba(150, 186, 180, 0.693);
  width: 100%;
  font-family: "Mulish", sans-serif;
  font-weight: 500;
  border: 4px solid rgb(0, 0, 0);
}


.sectionview {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.sectionview img {
  border-radius: 10px;
  width: 500px;
  height: auto;
}

figcaption {
  text-align: center;
  font-size: 20px;
  margin-top: 5px;
  color: white;
  font-style: italic;
}

.interior {
  background-color: rgba(0, 0, 0, 0.755);
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  font-size: 30px;
}

.interiorphotos {
  display: inline-flex;
  position: relative;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0px 5px;
  overflow: hidden;
  margin: 0 auto;
}

.interiorphotos img {
  width: 600px;
  height: auto;
  border: 8px inset white;
  border-radius: 10px;
}


.interiorphotos img:hover {
  cursor: pointer;
}

.interior1caption {
  font-size: 28px;
  color: white;
  font-style: italic;
  position: absolute;
  margin-top: 300px;
  margin-right: 420px;
}

.videoshort {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(0, 0, 0, 0.755);
  width: 100%;
  height:100vh;
  color: white;
  padding:40px 0px;
  font-size: 30px;
}

.videoshort iframe {
  border-radius: 10px;
  width: 800px;
  height: 100vh;
  border: 10px inset white;
}

.track {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  padding-bottom: 10px;
  font-size: 30px;
}

.track img {
  border-radius: 10px;
  width: 500px;
  height: auto;
}

.track p {
  font-size: 25px;
  padding: 20px;
}

.racingflag {
  display: inline-flex;
  padding-left: 10px;
}

.racingflag img {
  filter:invert(100%);
   width: 50px;
  height: 50px;

}

.track img {
  border-radius: 10px;
}

.logo {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
}








/*Mobile version landscape orientation*/
@media screen and (max-width: 1000px) and (orientation: landscape) {
body{
  font-family: "Mulish", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  background-image: url("backdrop_mobile.jpg");
  background-size: 100% 50%;
  background-repeat: no-repeat;
  background-position: center top;
}

h1 {
  display: flex;
  text-align: center;
  justify-content: center;
    font-weight: 500;
  color:rgba(0, 0, 0, 0.612);
  text-shadow: 2px 2px 4px rgb(119, 20, 20);
  font-size: 45px;
  margin-top: 200px;
}

p {
  margin: auto;
  text-align: center;
  font-size: 27px;
  justify-content: center;
  padding: 10px;  
}



.imagebox {
  display: flex;
  justify-content: center;
  border-radius: 10px;
  align-items: center;
  background-color: rgb(199, 199, 199);
  width: 100%;
  height: 240px;
  margin-top: 800px;
  overflow: hidden;
}


.bodyphotos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  width: fit-content;
}

.bodyphotos img{
  border-radius: 10px;
  box-shadow: 3px 3px 5px rgb(0, 0, 0);
  animation-iteration-count: infinite;
  animation-name: carousel;
  animation-duration: 20s;
  transition: ease-in-out 0.5s;
  overflow: hidden;
  width: 320px;
  height: 195px;
}

@keyframes carousel {
  0% {
    transform: translateX(0%);
  }
  
  20% {
    transform: translateX(-150%);
  }
  50% {
    transform: translateX(-200%);
  }
  75% {
    transform: translateX(-250%);
  }
  100% {
    transform: translateX(250%);
  }
  
}

.carousel:hover {
  animation-play-state: paused;
}

.backdrop {
  background-color: rgba(0, 0, 0, 0.755);
  width: 100%;
  height: auto;
  overflow: hidden;
}

.Specifications {
  font-size: 40px;
  margin: auto;
  padding-top: 30px;
  text-align: center;
  display: flex;
  justify-content: center;
  color: white;
}

.Specifications img {
  margin-left: 10px;
  vertical-align: middle;
  display: inline-flex;
  filter: invert(100%);
}



.specs {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.specs ul {
  display: flex;
  flex-direction: column;
  font-size: 25px;
  text-align: center;
  list-style: none;
  padding: 10px;
  justify-content: center;
  background-size: cover;
  background-color: rgba(150, 186, 180, 0.693);
  width: 100%;
  font-family: "Mulish", sans-serif;
  font-weight: 500;
  border: 4px solid rgb(0, 0, 0);
}


.sectionview {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.sectionview img {
  border-radius: 10px;
  width: 500px;
  height: auto;
}

figcaption {
  text-align: center;
  font-size: 20px;
  margin-top: 5px;
  color: white;
  font-style: italic;
}

.interior {
  background-color: rgba(0, 0, 0, 0.755);
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  font-size: 30px;
}

.interiorphotos {
  display: inline-flex;
  position: relative;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0px 5px;
  overflow: hidden;
  margin: 0 auto;
}

.interiorphotos img {
  width: 600px;
  height: auto;
  border: 8px inset white;
  border-radius: 10px;
}


.interiorphotos img:hover {
  cursor: pointer;
}

.interior1caption {
  font-size: 28px;
  color: white;
  font-style: italic;
  position: absolute;
  margin-top: 300px;
  margin-right: 420px;
}

.videoshort {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(0, 0, 0, 0.755);
  width: 100%;
  height:100vh;
  color: white;
  padding:40px 0px;
  font-size: 30px;
}

.videoshort iframe {
  border-radius: 10px;
  width: 800px;
  height: 100vh;
  border: 10px inset white;
}

.track {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  padding-bottom: 10px;
  font-size: 30px;
}

.track img {
  border-radius: 10px;
  width: 500px;
  height: auto;
}

.track p {
  font-size: 25px;
}

.racingflag {
  display: inline-flex;
  padding-left: 10px;
}

.racingflag img {
  filter:invert(100%);
   width: 50px;
  height: 50px;

}

.track img {
  border-radius: 10px;
}

.logo {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
}










/*Mobile version portrait orientation*/
@media screen and (max-width: 430px) and (orientation: portrait) {


body{
  font-family: "Mulish", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  background-image: url("backdrop_mobile.jpg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center top;
}

h1 {
  display: flex;
  text-align: center;
  justify-content: center;
    font-weight: 500;
  color:rgba(0, 0, 0, 0.612);
  text-shadow: 2px 2px 4px rgb(119, 20, 20);
  font-size: 18px;
}

p {
  margin: auto;
  text-align: center;
  font-size: 18px;
  justify-content: left;
  padding: 10px;  
}



.imagebox {
  display: flex;
  justify-content: center;
  border-radius: 10px;
  align-items: center;
  background-color: rgb(199, 199, 199);
  width: 100%;
  height: 110px;
  margin-top: 380px;
  overflow: hidden;
}


.bodyphotos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  width: fit-content;
}

.bodyphotos img{
  border-radius: 10px;
  box-shadow: 3px 3px 5px rgb(0, 0, 0);
  animation-iteration-count: infinite;
  animation-name: carousel;
  animation-duration: 20s;
  transition: ease-in-out 0.5s;
  overflow: hidden;
}

@keyframes carousel {
  0% {
    transform: translateX(0%);
  }
  
  20% {
    transform: translateX(-150%);
  }
  50% {
    transform: translateX(-200%);
  }
  75% {
    transform: translateX(-250%);
  }
  100% {
    transform: translateX(250%);
  }
  
}

.carousel:hover {
  animation-play-state: paused;
}

.backdrop {
  background-color: rgba(0, 0, 0, 0.755);
  width: 100%;
  height: auto;
  overflow: hidden;
}

.Specifications {
  font-size: 25px;
  margin: auto;
  padding-top: 30px;
  text-align: center;
  display: flex;
  justify-content: center;
  color: white;
}

.Specifications img {
  margin-left: 10px;
  vertical-align: middle;
  display: inline-flex;
  filter: invert(100%);
}



.specs {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.specs ul {
  display: flex;
  flex-direction: column;
  font-size: 18px;
  text-align: center;
  list-style: none;
  padding: 10px;
  justify-content: center;
  background-size: cover;
  background-color: rgba(150, 186, 180, 0.693);
  width: 100%;
  font-family: "Mulish", sans-serif;
  font-weight: 500;
  border: 4px solid rgb(0, 0, 0);
}


.sectionview {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.sectionview img {
  border-radius: 10px;
}

figcaption {
  text-align: center;
  font-size: 14px;
  margin-top: 5px;
  color: white;
  font-style: italic;
}

.interior {
  background-color: rgba(0, 0, 0, 0.755);
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
}

.interiorphotos {
  display: inline-flex;
  position: relative;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0px 5px;
  overflow: hidden;
  margin: 0 auto;
}

.interiorphotos img {
  width: 300px;
  height: auto;
  border: 8px inset white;
  border-radius: 10px;
}


.interiorphotos img:hover {
  cursor: pointer;
}

.interior1caption {
  font-size: 16px;
  color: white;
  font-style: italic;
  position: absolute;
  margin-top: 140px;
  margin-right: 180px;
}

.videoshort {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(0, 0, 0, 0.755);
  width: 100%;
  height:40vh;
  color: white;
  padding-top:40px;
}

.videoshort iframe {
  border-radius: 10px;
  border: 10px inset white;
}

.track {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  padding-bottom: 10px;
}

.racingflag {
  display: inline-flex;
  padding-left: 10px;
}

.racingflag img {
  filter:invert(100%)

}

.track img {
  border-radius: 10px;
}

.logo {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
}
