@charset "UTF-8";

body {
  font-family: 'Anton', sans-serif;
  background-color: black;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  height: 100vh; 
  margin: 25px;      
  padding: 5px;   
  text-align: center;
}

h1 {
  font-size: 2.5em;
  letter-spacing: 1px;
  margin: 0 0 10px 0;
}

h3 {
  font-family: 'Bebas Neue', sans-serif;
}

#clock {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    display: flex;
    margin: 0px;
}

.divClock {
  display: inline-block;
  justify-content: center; 
  flex-wrap: wrap; 
  /* box-sizing: border-box; */
  border: 7px solid #2c82ddd2;
  border-radius: 60px;
  transition: background-color 0.3s;
}

.divClock:hover {
    background-color: white;
    box-shadow: 0 0 10px 5px #F5D331;
    filter: brightness(2.0);
}


.botaoBandeira {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 16px;
  width: 130px;
  border: none;
  background-color: #f0f0f0;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.botaoBandeira:hover {
  background-color: #e0e0e0c5;
}

.iconBandeira {
  width: 40px;
  height: auto;
  margin-bottom: 6px;
}

.nomeBandeira {
  font-size: 14px;
  color: #333;
  font-weight: bold;
  text-align: center;
}

.divBotoes {
  display: flex;
  gap: 5px; 
  justify-content: center; 
  flex-wrap: wrap; 
}

.divBotoes a {
  text-decoration: none;
}