@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400&display=swap');
@import url('http://fonts.cdnfonts.com/css/do-futuristic');

*{
  margin:0;
  padding:0;
  box-sizing: border-box;
  list-style: none;
}
body{
  background-color: #04041B;
  user-select:none;
  font-family: 'Rubik', sans-serif;
}

/* FOOTER */
.footer{
    margin-top:5%;
    bottom:0;
    width:100%;
    text-align: center;
  }
  .footer span{
    font-weight:bold;
    padding: 10px 0;
    font-size:15px;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: white;  
  }
  span.copyright{
    float:right;
    margin: 0 1%;
  }
  span.joao{
    color:#14b44f;
    /*animation: rainbowTexto 1.5s;
    animation-iteration-count: infinite;*/
    cursor:pointer;
  }
  
  @keyframes rainbowTexto{
      from {
          color: #6666ff;
        }
        10% {
          color: #0099ff;
        }
        50% {
          color: #00ff00;
        }
        75% {
          color: #ff3399;
        }
        100% {
          color: #6666ff;
        }
  }

  /* HIGHLIGHTS DO YOUTUBE */
.youtube-highlights p{
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size:25px;
  margin:4% 5%;
  margin-bottom:2%;
  color: white;
}

.youtube-highlights .youtube-iframes{
  display: flex;
  flex-wrap:wrap;
  justify-content: space-evenly;
  row-gap:50px;
}
.youtube-highlights .youtube-iframes iframe{
  border:2px solid #4e4c51;
  border-radius: 25px;
  margin: 0% 15px;
}

@media screen and (max-width: 800px) {
  .youtube-highlights .youtube-iframes{
    display: flex;
    flex-wrap:wrap;
    justify-content: space-evenly;
    row-gap:25px;
  }

  .youtube-highlights .youtube-iframes iframe{
    border:2px solid #4e4c51;
    border-radius: 25px;
    margin: 0% 15px;
    width:80%;
  }
  
}