*{
    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%;
    color: #ffdb39;
    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;
    flex-direction: column;
    gap: 10px;
    background-color: #313131;
    color: #fff;
    padding: 10px;
    text-align: center;
    margin-bottom: 20px;
  }



  .fa-fire {
color: #ff3939;

  }

  
  @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: 1450px;
    opacity: 0.5;
    border: 1px solid #ffffff8f;
    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; }
}


.logo-glow {
  width: 50px;
  animation: logoPulse 4s ease-in-out infinite;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;

}



.divMenu {
  width: 100%;
  height: 60px;
  padding: 20px;
  display: flex;
  justify-content:space-between;
  align-items: center;
  background-color: rgb(26, 26, 26);
  font-size: 20px;

}


.rightMenu {
  display: flex;
  align-items: center;
  align-items: center;
  gap: 25px;
}


.rightMenu a {
display: flex;
justify-content: center;
align-items: center;
gap: 5px;
color: #ffffff;
transition: color 0.1s ease-in-out;


}
.rightMenu a:hover {
  color: #ffd000;
  }

.leftMenu {
  display: flex;
  justify-content: center;
  align-items: center;
}


.fa-bars {
  color: #fff;
  cursor: pointer;
}

.forBars {
  display: none;
  justify-content: baseline;
  align-items: center;
}

@media only screen and (min-width: 651px) {
  .showMenu {
    display: none;
  }

  .rightMenu {
    width: 100%;
  }

}


@media only screen and (max-width: 650px) {

.leftMenu {
width: 100%;
display: flex;
justify-content:space-between;
}

.rightMenu {
display: none;
width: 100%;
height: 100%;
background-color: #000000d3;
position: fixed;
left: 0;
top: 60px;
z-index: 1000;
animation-name: move;
animation-duration: 0.5s;
justify-content: center;
align-items: center;
flex-direction: column;
backdrop-filter: blur(16px);
-webkit-backdrop-filter: blur(16px);
}

.rightMenu a {
  font-size: 30px;

}

.forBars {
  display: flex;

}



}

@keyframes move {
  from { opacity: 0; height: 300px;}
  to   { opacity: 1; height: 100%;}
}

.showMenu {
display: flex;
  }

  .fa-xmark {
    display: none;
    font-size: 25px;
    color : #fff;
    cursor: pointer;
  }