@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Jost", serif;
  outline: none;
}

:root {
  --bg-color: #051d18;
  --text-color: #a1cca5;
}

body::selection,
code::selection {
  background-color: var(--bg-color);
  color: var(--text-color);
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-weight: 500;
  margin: 0;
  padding: 0;
  height: 100%;
}

.main {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  margin-top: 100px;
  margin-bottom: 100px;
  flex-direction: column;
}

.task {
  background-color: var(--text-color);
  border-radius: 32px;
  margin-bottom: 30px;
  padding: 15px 0;
  width: 50%;
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  text-decoration: none;
  text-decoration: none;
  color: var(--bg-color);
  box-shadow: inset rgba(7, 37, 31, 0.32) -5px -5px 0px 0px;
  font-weight: 600;
}

.task:last-child {
  margin-bottom: 0;
}

.task:hover {
  scale: 0.95;
  box-shadow: inset rgba(7, 37, 31, 0.32) -3px -3px 0px 0px;
}



/** =====  Start Media Queries Section  ===== **/

@media only screen and (max-width: 768px) {

  .main {
    margin-top: 80px;
    margin-bottom: 80px;
  }

  .task {
    width: 80%;
  }

}

/** =====  End Media Queries Section  ===== **/



/* =====  Start Scrollbar Section  ===== */

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background-color: var(--bg-color);
}

::-webkit-scrollbar-thumb {
  background-color: var(--text-color);
  border-radius: 50px;
  height: 50px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #6f967a;
}

/* =====  End Scrollbar Section  ===== */