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

@font-face {
  font-family: "myFont";
  src: url("fonts/OffBit-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "myFont";
  src: url("fonts/OffBit-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

:root {
  --brand: #ff0034;
  --brand-dark:#4a0200;
  --white: #fff;
  --white-2: #e0e0e0;
  --white-3: #888888;
  --black: #000000;
  --black-2: #1c1a1a;
  --black-3: #121212;
  --border: 1px solid #1e1e1e;
  --shape: squircle;
  --myFont: "myFont", sans-serif;
    --inset-shadow: 0px 1.5px 1px 0px #ffffff0f;
  --emboss-shadow: 0px 1.5px 1px -1px #ffffff33 inset;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Urbanist", sans-serif;
  background: var(--black);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 90%;
  min-height: 100vh;
  max-width: 500px;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
}

.project-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  gap: 10px;
}

.project-card {
  display: flex;
  flex-direction: column;
  padding: 16px 10px;
  width: 100%;
  flex-grow: 1;
  background: var(--black-2);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 32px;
  corner-shape: var(--shape);
  gap: 10px;
  transition: all 0.6s ease;
  box-shadow: var(--emboss-shadow);
}

.heading {
  font-family: var(--myFont), sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white-2);
  text-align: center;
  text-transform: capitalize;
}

.project-name {
  font-family: var(--myFont), sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white-2);
  text-align: center;
  text-transform: capitalize;
}

.btn {
  background: var(--brand);
  color: var(--black);
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 32px;
  padding: 0.8rem 2rem;
  corner-shape: var(--shape);
  cursor: pointer;
  text-transform: capitalize;
  box-shadow: 0px 2px 2px -1px #ff736e inset;

}



@media (min-width:768px){
  .project-card{
    width: 45%;
  }

}