/* ============= 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;
}

/**
* ======================
* Match Pairs
* ======================
*/

/* body */
body {
  background: #0b2434;
}

/* main container */
.container {
  width: 95vw;
  margin: 0 auto;
  margin-top: 3rem;
  border-radius: var(--borderRadius);
  background: var(--grey-100);
  padding: 2rem 1rem;
  text-align: center;
  max-width: 500px;
}

/* gmae title */
.game-title {
  text-align: center;
  font-weight: bold;
  margin-bottom: 1rem;
}

/* game title underline (ul) */
.game-title-ul {
  height: 0.15rem;
  background: var(--grey-400);
  margin-bottom: 1rem;
}

/* game-data */
.game-data {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 1rem;
  place-items: center;
}

/* key */
.key {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

/* value */
.value {
  margin-bottom: 0.5rem;
}

/* game-data-item */
.game-data-item {
  /* width: 9em; */
  min-width: 9rem;
  background: #0b2434;
  color: var(--white);
  border-radius: var(--borderRadius);
  text-align: center;
  box-shadow: var(--shadow-1);
}

/* blocks */
.blocks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 1fr);
  row-gap: 1rem;
  place-items: center;
  margin-bottom: 2rem;
}

/* block */
.block {
  height: 5rem;
  width: 5rem;
  border-radius: var(--borderRadius);
}

.block:hover {
  cursor: pointer;
}

/* block content */
.block-content {
  height: 100%;
  width: 100%;
  border-radius: var(--borderRadius);
  background: var(--grey-300);
  display: flex;
  place-items: center;
  place-content: center;
  font-size: 4rem;
}

.default-icon-color {
  color: transparent;
  text-shadow: 0 0 0 var(--grey-600);
}

/* .block-content:hover {
  background: var(--primary-200);
} */

/* selected block */
.selected {
  background: var(--white);
  border: 2px solid #ec3b83;
}

/* locked block */
.locked {
  background: var(--white);
  border: 2px solid #228b22;
}

/* new game button */
.game-btn {
  background: #0b2434;
}

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

/*
* * if screen width is less than 450px
*/

@media screen and (max-width: 400px) {
  /* block */
  .block {
    height: 3.5rem;
    width: 3.5rem;
    border-radius: var(--borderRadius);
  }
  .block-content {
    font-size: 2rem;
  }
}

@media screen and (max-width: 350px) {
  .game-data-item {
    min-width: 5rem;
  }
  .key {
    font-size: 0.55rem;
  }
  .value {
    font-size: 0.7rem;
  }
}
