@charset "UTF-8";

body {
  font-family: 'Anton', sans-serif;
  background-color: black;
  color: white;
 
  margin: 0px;      
  padding: 20px;   
  text-align: center;
  overflow-x: hidden;
}

#logo_fncs {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
}

h1 {
  font-size: 2.5em;
  letter-spacing: 1px;
  margin: 0 0 10px 0;
}

h2 {
  font-family: '', sans-serif;
  font-size: 2em;
}

h3 {
  font-family: 'Arial', sans-serif;
  font-size: 1.5em;
  letter-spacing: 1px;
  margin: 0 0 10px 0;
}

#countdown {
  font-size: 3.5em;
  font-weight: bold;
  margin: 16px 0 0 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .divLives {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap; 
    margin-top: 20px;
  }

  .divLives iframe {
    flex: 1 1 500px;  
    max-width: 100%;
    height: 400px;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 10px;
  }

@media (max-width: 768px) {
  .divLives iframe {
    flex: 1 1 100%;
    height: 320px;
  }
}