*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



@font-face { font-family : sscbot; src: url('sscbot.ttf');}

  body {
    min-height: 100vh;
    font-family: sscbot;
    background-color: #fef5ec;
    background-size: 400% 400%;
    color: #000;
    animation: darkMove 8s ease infinite;
    font-family:sscbot;
  }

  .title {
    width: 100%;
    max-width: 1430px;
    color: #ffdb39;
    background-color: #0788bb;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    text-align: center;
    user-select: none;
    -webkit-user-drag: none;
  }

  
  @keyframes darkMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }

  .topDiv {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    flex-direction: column;
    gap: 10px;
  
  }


  .fa-fire {
color: #ff3939;

  }


  .logo-glow {
    width: 100px;
    height: auto;
    animation: logoPulse 4s ease-in-out infinite;
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
  }
  
  @keyframes logoPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
  }

.d {
        width: 100%;
        padding: 10px;
        display: flex;
        justify-content:center;
        align-items: center;
}

.container {
    width: 100%;
    max-width: 1450px;
    padding: 10px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    color: #000;
}

.cards {
height: 185px;
background-color: rgb(255, 208, 0);
border-radius: 10px;
padding: 10px;
display: flex;
flex-direction: column;
gap: 10px;
flex: 1 300px ;
}


.cardTop {
    display: flex;
    gap: 10px;
    align-items: center;
}

.male {
    color: #006891;
}

.woman {
    color: #eb08eb;
}



.description {
color: #4d4d4d;
width: 100%;
height: 30px;
word-wrap: break-word;
overflow: hidden;
}

.addBtn {
    width: 100%;
    height: 55px;
    border: 0;
    border-radius: 5px;
    background-color: rgb(255, 232, 127);
    cursor: pointer;
    font-size: 15px;
    transition: all 0.2s ease-in-out;
    color: #000;

}

.addBtn:hover {
    background-color: rgb(255, 237, 157);
}


.bottomDiv {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    gap: 5px;
    direction: ltr;
    color:#000;
  }

  a:link {
    text-decoration: none;
    }
  

  .urlDictator {
    color: #0ca6ee;
  }
  
.addYourAccount {
    width: 250px;
    padding: 10px;
    border: 0;
    border-radius: 10px;
    cursor: pointer;
    background-color: #ffd727;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    font-size: 16px;
    transition: background-color 0.2s ease-in-out;
}


.addYourAccount:hover {
  background-color: #ffd858;
}

.hr {
    width: 100%;
    max-width: 1430px;
    opacity: 0.5;
    border: 1px solid #0000008f;
    border-bottom: 0;
}


.containerAdd {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}


#username {
  width: 100%;
  max-width: 350px;
  border: 2px solid #a5a5a5;
  background-color: #ffffff;
  outline: 0;
  padding: 10px;
  direction: ltr;
  border-radius: 5px;
  font-size: 15px;
}

#sex, #country, #description {
  width: 100%;
  max-width: 350px;
  border: 2px solid #a5a5a5;
  background-color: #ffffff;
  outline: 0;
  padding: 10px;
  border-radius: 5px;
  font-size: 15px;
}

.descriptioninAdd {
  height: 150px;
  appearance: none;
  -webkit-appearance: none; 
  -moz-appearance: none; 
  resize: none;
  font-size: 15px;
}

#add {
  width: 100%;
  max-width: 350px;
  background-color: #afafaf;
  border: 0;
  outline: 0;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  font-size: 15px;
}

#add:disabled:hover {
  background-color: #afafaf; 
  cursor: auto;
}

#add:hover {
  background-color: #ffd858;

}

.dictatorInAdd {
  position: absolute;
  bottom: 0px;
}

.blurDiv {
  width: 100%;
  height: 100%;
  background-color: #000000b7;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  user-select: none;
  -webkit-user-drag: none;
}

.msgWindows {
  width: 100%;
  max-width: 350px;
  border: 2px solid #ebebeb;
  border-radius: 10px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
  background-color: #ffffff; 
  box-shadow: 0px 0px 100px #ffffff; 
  opacity: 0;
  transform: scale(0.5);
  animation: popUp 0.5s forwards 0.1ms; 
}

.iconMsg {
  width: 50px;
}

.closeWindows {
  width: 200px;
  padding: 10px;
  border-radius: 10px;
  background-color: #1aaaec;
  border: 0;
  cursor: pointer;
  font-size: 15px;
  color: #fff
}

@keyframes fadeInBg {
  to { opacity: 1; }
}

@keyframes popUp {
  0% { opacity: 0; transform: scale(0.5); }
  60% { opacity: 1; transform: scale(1.1); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes fadeInElement {
  to { opacity: 1; }
}