@font-face {
  font-family: Jersey_15;
  src: url(../assets/fonts/Jersey_15/Jersey15-Regular.ttf);
}

@font-face {
  font-family: Roboto;
  src: url(../assets/fonts/Roboto/Roboto-VariableFont_wdth\wght.ttf);
}

/*LOADING SPINNER*/
.loader {
  border: 16px solid rgb(255, 68, 0);
  border-radius: 50%;
  border-top: 16px solid rgb(255, 255, 255);
  width: 120px;
  height: 120px;
  -webkit-animation: spin 4s linear infinite; /* Safari */
  animation: spin 4s linear infinite;
  position: fixed;
  top: 35dvh;
  left: 40dvw;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
}

.loader img {
    height: 210px;
}

/* Safari */
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*HEADER*/
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 60px;
  background-color: orangered;
}

.header_logo {
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
}

header img {
  height: 50px;
}

header span {
  font-family: Jersey_15;
  font-size: 34px;
}

header input {
  height: 34px;
  font-size: 26px;
  padding: 8px;
  font-family: Jersey_15;
  border-radius: 12px;
  border: none;
}

/*FOOTER*/
footer {
  display: flex;
  justify-content: center;
  padding: 16px 60px;
  background-color: orangered;
  font-family: Jersey_15;
  font-size: 26px;
}

/*CONTENT*/
.content {
  min-height: calc(100dvh - 140px);
  background-color: rgb(255, 132, 0);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding: 60px;
}

.load_more_btn {
  position: fixed;
  bottom: 10dvh;
  right: 20dvw;
}

.load_more_btn button {
  height: 34px;
  width: 120px;
  background-color: orangered;
  font-family: Jersey_15;
  font-size: 18px;
  border: none;
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.empty_search {
  font-family: Jersey_15;
  font-size: 40px;
}
