@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
  --blue: #699BF7;
  --red: #FC5151;
  --light-yellow: #FFE100;
  --yellow: #FFCE42;
  --green: #2ECC71;
  --violet: #7D3CFF;
  --behance: #0057ff;
  --purple: #9B59B6;
}

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

body {
  font-size: 16px;
  font-family: "Oswald", sans-serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  scrollbar-width: thin;
}
body * {
  box-sizing: border-box;
}

h1 {
  font-size: 1.8rem;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  color: black;
}

h2 {
  font-family: "Oswald", sans-serif;
  font-weight: normal;
  color: black;
  font-size: 1.2rem;
}

h3 {
  font-weight: 300;
  font-family: "Oswald", sans-serif;
  color: #858585;
  font-size: 1.2rem;
}

p {
  font-family: "Roboto", sans-serif;
  color: #858585;
}

button {
  outline: none;
  height: 40px;
  border-radius: 0;
  border: solid 3px #000000;
  font-family: "Oswald", sans-serif;
  font-weight: normal;
  font-size: 1.2rem;
  line-height: 0;
  padding: 0 0.5rem;
  padding-bottom: 6px;
  box-shadow: inset 0 -6px 0 rgba(0, 0, 0, 0.2);
}
button:active {
  height: 34px;
  padding-bottom: 0;
  box-shadow: none;
  transform: translate(0, 6px);
}

.card {
  width: 280px;
  height: 343px;
  border: solid 3px black;
  border-radius: 10px;
  display: grid;
  grid-template-rows: 280px auto;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.card .illustration {
  display: grid;
  place-content: center;
}
.card:hover {
  margin-top: -20px;
}

* {
  box-sizing: border-box;
}

body {
  background-color: hsl(240deg, 9%, 98%);
  box-sizing: border-box;
  display: grid;
  place-items: center;
  height: 100vh;
  font-size: 16px;
}

main {
  margin: 4rem auto;
  padding: 0 2rem;
  padding-bottom: 4rem;
  width: auto;
  max-width: 400px;
  display: grid;
  gap: 4rem;
}

h1 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 3rem;
}

a {
  text-decoration: none;
}

.call {
  text-align: center;
}
.call p {
  margin: 7px;
}

.options {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 1rem;
}

.dense {
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  display: grid;
  margin-top: 20px;
}
.dense .platform {
  height: 51px;
  background-color: #363636;
  transition: all 0.2s ease-in-out;
}
.dense .platform:hover {
  background-color: var(--color);
}
.dense h2 {
  display: none;
}

.platform {
  color: white;
  border: solid 3px #000000;
  border-width: 2px 2px 4px 2px;
  border-radius: 8px;
  display: grid;
  grid-template-columns: 50px auto;
  align-items: center;
  background-color: var(--color);
}
.platform:active {
  border-width: 2px;
  transform: translateY(2px);
}
.platform h2 {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  color: inherit;
  margin: 0.5rem 2rem;
  margin-left: 0;
}
.platform .icon {
  font-size: 1.2rem;
  display: grid;
  place-items: center;
}
.platform.email h2::after {
  content: "vanviethieuanh@gmail.com";
}
.platform.email h2.copied::after {
  content: "Copied to clipboard";
}
.platform.email:hover h2:not(.copied)::after {
  content: "Copy to clipboard";
}

@media (max-width: 768px) {
  p {
    width: auto;
  }
  .platform.email:hover h2::after {
    content: "Copied to clipboard";
  }
}/*# sourceMappingURL=card.css.map */