/* ── index.html ─────────────────────────────────────── */

body {
  background-color: #f2f2f2;
  font-family: 'Gotham Light', sans-serif;
}

.tcard {
  background-image: url('../images/plane.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  width: 50vw;
}

@media (max-width: 500px) {
  .tcard {
    width: 100vw;
    height: 50vh;
  }
}

.name-heading {
  font-size: 2.5em;
  font-family: "Times New Roman", Times, serif;
  font-weight: bold;
  color: #2F4F4F;
}

.btn-portfolio {
  background-color: #f7f7f7;
  color: black;
  border: 4px solid #e7e7e7;
  width: 300px;
  border-radius: 30px;
}

.btn-portfolio:hover {
  background-color: #d2d2d2;
  color: black;
}

