@import url('https://fonts.cdnfonts.com/css/akira-expanded');

body{
    background-color: black;
    color: white;
}
h1{
    text-align: center;
    font-family: 'Akira Expanded', sans-serif;
}
h2{
    text-align: center;
}
.texte{
    text-align: center;
    font-family: 'Akira Expanded', sans-serif;
}

img{
    max-width: 150px;
}
a{
  text-decoration: none;
}

button {
    margin-left: 31%;
    background: transparent;
    position: relative;
    padding: 5px 15px;
    display: flex;
    align-items: center;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid rgb(255, 255, 255);
    border-radius: 25px;
    outline: none;
    overflow: hidden;
    color: rgb(255, 255, 255);
    transition: color 0.3s 0.1s ease-out;
    text-align: center;
  }
  
  button span {
    margin: 10px;
  }
  
  button::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    content: '';
    border-radius: 50%;
    display: block;
    width: 20em;
    height: 20em;
    left: -5em;
    text-align: center;
    transition: box-shadow 0.5s ease-out;
    z-index: -1;
  }
  
  button:hover {
    color: #000000;
    border: 1px solid rgb(0, 0, 0);
  }
  
  button:hover::before {
    box-shadow: inset 0 0 0 10em rgb(255, 255, 255);
  }



  .countdown {
    margin-top: 30%;
    display: flex;
    justify-content: space-around;
    width: 100%;
    max-width: 600px;
    background: #000000;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.countdown div {
    text-align: center;
}

.countdown div span {
    display: block;
    font-size: 2em;
    font-weight: bold;
}

.countdown div small {
    font-size: 0.75em;
    color: #555;
}




footer{
  margin-top: 100%;
}

footer p{
  text-decoration: none;
  text-align: center;
  text-transform: none;
}









  