/*RESET & BASE*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
  -webkit-tap-highlight-color: transparent;
  /* text-decoration: none; */
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
  background: #f5f5f5;
  min-height: 100vh;
  overflow-x: hidden;
  animation: fondu-entree 0.3s ease;
  transition: opacity 0.3s ease;
}
@keyframes fondu-entree {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/*HEADER*/
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(10px, 3vw, 20px) clamp(12px, 4vw, 20px);
  width: 100%;
  margin-bottom: 10px;
}

header a {
    text-decoration: none;
    color: #000;
}
.info {
  margin-top: 20px;
  padding: clamp(10px, 3vw, 20px) clamp(12px, 4vw, 20px);
  font-weight: 600;
}

/*FACTURE*/

.dad {
  gap: 20px;
}
.wifi {
  border: 1.5px solid rgba(128, 128, 128, 0.562);
  border-radius: 12px;
  margin: 0 clamp(12px, 4vw, 20px) clamp(10px, 3vw, 16px);
  margin: 10px;
  padding: clamp(14px, 4vw, 20px);
  line-height: 1.5;
}
.wifi .top  {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.wifi .top .left {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.wifi .top .left img {
  width: 30px;
  height: 30px;
  object-fit: cover;
}

.wifi .top .left .midle h2 {
    font-weight: 600;
    font-size: 17px;
}
.wifi .top .left .midle p {
    font-size: 10px;
    color: gray;
}

hr {
    margin-top: 30px;
    color: rgba(128, 128, 128, 0.562);
}
.wifi .top .valide{
    width: 50px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: end;
    padding: 5px;
    background-color: rgba(1, 230, 1, 0.432);
    border-radius: 20px;
}
.wifi .top .valide .circle {
    border-radius: 100%;
    width:25px ;
    height:25px ;
    background-color: rgba(0, 128, 0, 0.63);
}

.wifi .bottom {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-top: 10px;
}
.wifi .bottom a {
    color: orange;
}