@font-face {
    font-family: 'Nohemi';
    src: url('assets/fonts/nohemi-font/Nohemi-Regular-BF6438cc579d934.woff') format('woff2'),
         url('assets/fonts/nohemi-font/Nohemi-Regular-BF6438cc579d934.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Nohemi", sans-serif;
  background-image: url('./assets/BCS.jpg') !important;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;    
  color: #000 !important;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  color: #333;
  text-align: center;
}

.container {
  background: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
  width: 90%;
  max-width: 400px;
}

.icon {
  font-size: 60px;
  margin-bottom: 20px;
}

.img-icon {
   width: 300px;
}
.img-icon2 {
   width: 90px;
   animation: girar 2s linear infinite;
}
h1 {
  margin-bottom: 10px;
}

p {
  font-size: 18px;
}

#countdown {
  font-weight: bold;
  color: #ff6600;
  margin-top: 15px;
}

@keyframes girar {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}