* {
    box-sizing: border-box;
    /*display: flex;*/
    align-items: center;
    justify-content: space-evenly;
    flex-direction: column;
    flex-wrap: nowrap;
    
}

/*body > style:first-of-type {*/
/*  display: none !important;*/
/*}*/


body {
    overflow-x: hidden;
    width: 100vw;
    margin: 0;
    background-color: #a43931;
    /* For browsers that do not support gradients */
    background-image: linear-gradient(to right, #1f1c18, #6b150c, #1f1c18);
    font-family: Arial;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: column;
    flex-wrap: nowrap;

}

.header {
    color: black;
    font-family: “Open Sans”, sans-serif;
    text-shadow: 0px -2px 4px #fff, 0px -2px 10px #FF3, 0px -10px 20px #F90, 0px -20px 40px #C33;
    font-size: 5vw;
    text-align: center;
    margin-bottom: 70px;
}

.tiger {

    width: 20%;
    height: 10%;
    padding: 0;
    margin: 0;
}

.workout {
    margin: 0;
    padding: 0;
}

.streetart {
    margin: 40px auto 0 auto;
}

#marque{
    margin-top: 2%;
    width:10%;
    height:5%;
}

.content {
    margin: 10px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
}

.content {
    margin: 10px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
}

.content>div {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
    padding-top: 20px;
    margin: 20px 10px 20px 10px;
    text-align: center;
    line-height: 75px;
    font-size: 30px;
    font-style: bolder;
    border: dashed 2px black;
    box-shadow: 0px -2px 4px #fff, 0px -2px 10px #FF3, 0px -10px 20px #F90, 0px -20px 40px #C33;
}

a:link {
    text-decoration: none;
}

.button {
    margin-top: 35px;
    margin-bottom: 15px;
    font-family: "Comic Sans ms";
    width: 150px;
    padding: 5px 5px;
    font-size: 24px;
    text-align: center;
    cursor: pointer;
    outline: none;
    color: #fff;
    background-color: black;
    border: none;
    border-radius: 15px;
    box-shadow: 0px -2px 4px #fff, 0px -2px 10px #FF3, 0px -10px 20px #F90, 0px -20px 40px #C33;
}

.button:hover {
    background-color: #4f534f
}

.button:active {
    background-color: #4f534f;
    box-shadow: 0 5px #666;
    transform: translateY(4px);
}

.footer {
flex-direction: row;
}


.footer img {
    width: 20px;
    margin: 20px;
    height: 20px;
}

.video {
    margin-top: 70px;
    margin-bottom: 100px;
    width: 70%;
    height: 500px;
    background-color: rgb(192,192,192,.1);
}

iframe {
    width: 100%;
    height: 100%;
}

.home {
    position: fixed;
    top: 0;
    left:0;
    margin: 20px;
    width: 30px;
    height: 30px;
}



/*Default CSS layout for narrow screens*/

@media (max-width: 480px) {
    .header {
        font-size: 7vw;
        height: 100vh;
    }

    .tiger {
        width: 60%;
        height: 10%;
        margin-top: 50px;
    }
    #marque{
        width:80%;
        height:30%;
    }
}

@media (max-width: 800px) {
  .header {
    font-size: 6vw;
    margin-bottom: 30px;
  }

  .tiger {
    width: 60%;
    height: auto;
    margin-top: 20px;
  }

  #marque {
    width: 60%;
    height: auto;
  }

  .content {
    flex-direction: column;
  }

  .content > div {
    width: 90%;
  }

  .footer {
    flex-direction: column;
  }
}



.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
}

.marquee-container img {
  display: inline-block;
  animation: scroll 10s linear infinite;
}

@keyframes scroll {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}









/*background-color:#ffdda6,#a87e09;*/