@import url("https://fonts.googleapis.com/css2?family=Caveat:wght@700&family=Roboto+Condensed:wght@700&family=Rubik+Vinyl&display=swap");
@import url("https://fonts.googleapis.com/css?family=Marmelad|Philosopher");

html,
body {
  font-size: 20px;
  font-family: "Marmelad", sans-serif;
  overflow-x: hidden;
}

/* * {
  border: 1px solid red;
} */

h3 {
  font-family: "Caveat", cursive;
  /* font-size: 35px; */
}
.sub-title {
  text-align: right;
  display: inline-block;
  margin-left: 5vw;
  font-size: 20px;
  font-family: "Marmelad", sans-serif;
}

.blur {
  background: url("/img/bg.jpg") no-repeat;
  background-size: cover;
  background-position: center;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100vh;
  width: 100%;
  /* background: linear-gradient(90deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
  background-size: 400% 400%;
  animation: gradient 30s ease infinite; */
  animation: animateBg 5s linear infinite; */
  transform: translate3d(0, 0, 0);
  z-index: -9999;
}

@keyframes animateBg {
  100% {
    filter: hue-rotate(360deg)
  }
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes notepad {
  0% {
    transform: rotateY(0deg);
  }
  85% {
    transform: rotateY(360deg);
  }
}

.wrap {
  margin-top: 1vh;
  width: 100%;
  min-height: 80vh;
  z-index: 2;
  background: rgba(255, 255, 255, 0.5);
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 5vh;
  backdrop-filter: blur(10px);
}

.header {
  display: inline-flex;
  flex-direction: column;
  margin-top: 5vh;
  position: fixed;
  width: 100%;
  position: relative;
  height: 100%;
  vertical-align: middle;
  color: white;
  backdrop-filter: blur(5px);
  border-radius: 50px;
}

.sub-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sub-header h1 {
  text-align: left;
}

.logo {
  position: relative;
  perspective: 1000px;
  width: 70px;
  height: 100px;
}

.logo img {
  width: 100%;
  height: auto;
  animation: notepad 10s ease infinite;
  animation-delay: 5s;
}

.menu,
.menu-login {
  /* width: 25vw; */
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 20%;
  left: 20vw;
  /* margin-left: 200px; */
  font-size: 22px;
}

.menu {
  /* border: 1px solid green; */
  min-width: 400px;
  left: 100px;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.menu-login {
  /* border: 1px solid green; */
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-width: 300px;
  top: 20%;
  left: auto;
  right: 0;
}

.menu-list {
  padding: 5px 10px 7px 10px;
  border-radius: 10px;
  text-transform: capitalize;
  border: 1px solid transparent;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
  /* text-decoration: underline; */
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 5px;
}

.menu-list:hover {
  color: rgba(255, 255, 255, 1);
  background: #000;
  border: 1px solid white;
  border-radius: 5px;
}

.a-rounded {
  border: 1px solid black;
}
a {
  color: white;
  text-decoration: none;
}

footer::before {
  content: "";
  display: block;
  left: 20%;
  right: 20%;
  position: fixed;
  bottom: 40px;
  width: 60%;
  height: 0px;
  display: block;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  z-index: -1;
}
footer a {
  color: black;
  text-decoration: none;
  position: fixed;
  bottom: 10px;
  width: 100%;
  text-align: center;
  font-size: 14px;
  z-index: 1;
}

.modal {
  top: 20%;
}

.avatar {
  margin: 0 10px 0 0;
  width: 40px;
  height: 40px;
  border: 1px solid #aaa;
  border-radius: 50%;
  vertical-align: middle;
  transition: 0.5s;
}

.avatar.big {
  margin: 0 10px 0 0;
  width: 120px;
  height: 120px;
  border: 2px solid #f8df23;
  border-radius: 50%;
  vertical-align: middle;
}

.man {
  background: url('/img/sex.png?22') no-repeat;
  background-position: 10px 0;
  background-size: cover;
  width: 25px;
  height: 32px;
  margin-left: -10px;
}
.woman {
  background: url('/img/sex.png?22') no-repeat;
  background-position: -17px 0;
  background-size: cover;
  width: 25px;
  height: 32px;
  margin-left: -1px;
}

@media screen and (max-width: 768px) {
  .modal {
    top: 0;
  }
  .header {
    margin-top: 3vh;
  }
  .logo {
    width: 40px;
    height: 25px;
  }
  .menu,
  .menu-login {
    min-width: auto;
    font-size: 20px;
    top: 0vh;
    left: 0;
    /* border: 1px solid green; */
    flex-direction: row;
    width: 100%;
    position: relative;
  }
  .menu-login {
    top: 0;
  }
  .menu-list {
    padding: 5px 0 0 0;
  }
  .sub-header {
    flex-direction: column;
    margin-top: -20px;
  }
  .sub-title {
    display: none;
  }

  .menu-list {
    background: rgba(0, 0, 0, 0.05);
    border: 0px solid rgba(255, 255, 255, 0.3);
    padding-left: 5px;
    padding-right: 5px;
    margin-top: 5px;
  }

  .blur {
    background: linear-gradient(90deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradient 30s ease infinite;
  }
}
