/* ============= GLOBAL CSS =============== */

/* fonts */
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;600&family=Montserrat&display=swap");

*,
::after,
::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 100%;
} /*16px*/

:root {
  /* colors */
  --primary-100: #e9effb;
  --primary-200: #becef3;
  --primary-300: #93aeec;
  --primary-400: #678ee4;
  --primary-500: #3c6ddc;
  --primary-600: #2354c3;
  --primary-700: #1b4198;
  --primary-800: #132f6c;
  --primary-900: #0c1c41;

  /* grey */
  --grey-50: #f8fafc;
  --grey-100: #f1f5f9;
  --grey-200: #e2e8f0;
  --grey-300: #cbd5e1;
  --grey-400: #94a3b8;
  --grey-500: #64748b;
  --grey-600: #475569;
  --grey-700: #334155;
  --grey-800: #1e293b;
  --grey-900: #0f172a;
  /* rest of the colors */
  --black: #222;
  --white: #fff;
  --red-light: #f8d7da;
  --red-dark: #842029;
  --green-light: #d1e7dd;
  --green-dark: #0f5132;

  --small-text: 0.875rem;
  --extra-small-text: 0.7em;
  /* rest of the vars */
  --backgroundColor: var(--grey-50);
  --textColor: var(--grey-900);
  --borderRadius: 0.25rem;
  --letterSpacing: 1px;
  --transition: 0.3s ease-in-out all;
  --max-width: 1120px;
  --fixed-width: 600px;

  /* box shadow*/
  --shadow-1: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-2: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-3: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-4: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

body {
  background: var(--backgroundColor);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-weight: 400;
  line-height: 1;
  color: var(--textColor);
}
p {
  margin: 0;
}
h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  font-family: var(--headingFont);
  font-weight: 400;
  line-height: 1;
  text-transform: capitalize;
  letter-spacing: var(--letterSpacing);
}

h1 {
  font-size: 3.052rem;
}

h2 {
  font-size: 2.441rem;
}

h3 {
  font-size: 1.953rem;
}

h4 {
  font-size: 1.563rem;
}

h5 {
  font-size: 1.25rem;
}

.text {
  margin-bottom: 1.5rem;
  max-width: 40em;
}

small,
.text-small {
  font-size: var(--small-text);
}

a {
  text-decoration: none;
}
ul {
  list-style-type: none;
  padding: 0;
}

.img {
  width: 100%;
  display: block;
  object-fit: cover;
}
/* buttons */

.btn {
  cursor: pointer;
  color: var(--white);
  background: var(--primary-500);
  border: transparent;
  border-radius: var(--borderRadius);
  letter-spacing: var(--letterSpacing);
  padding: 0.375rem 0.75rem;
  box-shadow: var(--shadow-1);
  transition: var(--transition);
  text-transform: capitalize;
  display: inline-block;
}
.btn:hover {
  background: var(--primary-700);
  box-shadow: var(--shadow-3);
}
.btn-hipster {
  color: var(--primary-500);
  background: var(--primary-200);
}
.btn-hipster:hover {
  color: var(--primary-200);
  background: var(--primary-700);
}
.btn-block {
  width: 100%;
}

/* alerts */
.alert {
  padding: 0.375rem 0.75rem;
  margin-bottom: 1rem;
  border-color: transparent;
  border-radius: var(--borderRadius);
}

.alert-danger {
  color: var(--red-dark);
  background: var(--red-light);
}
.alert-success {
  color: var(--green-dark);
  background: var(--green-light);
}
/* form */

.form {
  width: 90vw;
  max-width: var(--fixed-width);
  background: var(--white);
  border-radius: var(--borderRadius);
  box-shadow: var(--shadow-2);
  padding: 2rem 2.5rem;
  margin: 3rem auto;
}
.form-label {
  display: block;
  font-size: var(--small-text);
  margin-bottom: 0.5rem;
  text-transform: capitalize;
  letter-spacing: var(--letterSpacing);
}
.form-input,
.form-textarea {
  width: 100%;
  padding: 0.375rem 0.75rem;
  border-radius: var(--borderRadius);
  background: var(--backgroundColor);
  border: 1px solid var(--grey-200);
}

.form-row {
  margin-bottom: 1rem;
}

.form-textarea {
  height: 7rem;
}
::placeholder {
  font-family: inherit;
  color: var(--grey-400);
}
.form-alert {
  color: var(--red-dark);
  letter-spacing: var(--letterSpacing);
  text-transform: capitalize;
}
/* alert */

@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}

.loading {
  width: 6rem;
  height: 6rem;
  border: 5px solid var(--grey-400);
  border-radius: 50%;
  border-top-color: var(--primary-500);
  animation: spinner 0.6s linear infinite;
  margin: 0 auto;
}

/* title */

.title {
  text-align: center;
}

.title-underline {
  background: var(--primary-500);
  width: 7rem;
  height: 0.25rem;
  margin: 0 auto;
  margin-top: 1rem;
}

/* 
===============================>
** Fruit Slicer **
===============================>
*/

/* body */
body {
  background: var(--grey-800);
}

.container {
  width: 90vw;
  max-width: 500px;
  height: 90vh;
  padding: 1rem 0.5rem;
  margin: 0 auto;
  margin-top: 1rem;
  background: var(--grey-200);
  border-radius: var(--borderRadius);
  text-align: center;
  display: grid;
  /* grid-template-rows: 2rem 3px 3rem 1fr 2rem; */
  row-gap: 4px;
  /* for initial view */
  grid-template-rows: 2rem 3px 1fr 4rem 2rem;
}

.game-title {
  font-weight: 500;
}

.game-title-ul {
  height: 0.15rem;
  background: var(--grey-400);
}

.main-img {
  height: 100%;
  width: 100%;
}

.game-desc {
  font-size: 1.3rem;
  letter-spacing: var(--letterSpacing);
  text-transform: capitalize;
  color: var(--grey-500);
}

.game-data {
  padding: 0.8px;
  display: grid;
  grid-template-columns: 100px 1fr 1fr;
  place-items: center;
  justify-content: space-between;
  column-gap: 3px;
}

.game-data-item {
  background: var(--grey-800);
  color: var(--white);
  border-radius: var(--borderRadius);
  height: 100%;
  width: 100%;
  font-size: 1.3rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.game-data-item span {
  margin-left: 5px;
}

.game-btn {
  background: var(--grey-800);
  color: var(--white);
}

.game-btn:hover {
  background: var(--primary-100);
  color: var(--black);
}

.game-container {
  border-radius: var(--borderRadius);
  background: var(--grey-800);
}

.hide {
  display: none;
}

/* fruits */
.fruit-row {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  column-gap: 1rem;
  justify-content: space-between;
}

.fruit-item {
  display: flex;
  justify-content: center;
}

.fruit {
  font-size: 1rem;
  width: 1rem;
  z-index: 3;
}

.drop-fruit {
  animation-name: drop-fruit;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

#fruit-emoji:hover {
  cursor: pointer;
}

@keyframes drop-fruit {
  from {
    transform: translateY(0%);
  }
  to {
    transform: translateY(90%);
  }
}

@media screen and (min-width: 350px) {
  .game-data {
    grid-template-columns: repeat(3, 1fr);
  }
  .fruit {
    font-size: 2rem;
    width: 2rem;
  }
}
