:root {
  --primary-color: #d7e0e6;
  --secondary-color: #1b2d36;
}

html,
body {
  overflow-x: hidden;
}

body {
  font-family: "Playfair Display", serif;
}

.bg-color {
  background-color: var(--primary-color);
}

/*SECTION STYLING*/

.introduction {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  background-color: var(--primary-color);
}
.about-me {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  line-height: 1.6;
}

.section-about {
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-me {
  border-radius: 50px;
}

.portfolio {
  background-color: var(--primary-color);
}

/* Card Design */

.card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-img-top {
  height: 100%;
  object-fit: cover;
}

.card-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* BUTTON STYLES */

.btn-main {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.btn-main:hover {
  border: 2px solid var(--secondary-color);
  background-color: #fff;
}

/*Supreme*/

.supreme-start {
  height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--primary-color);
}

.supreme-gif {
  width: 350px;
  display: block;
  margin: auto;
}

.supreme-design {
  background-color: #eee;
}

/* FOOTER STYLES */
footer {
  width: 100%;
  background-color: var(--secondary-color);
  color: #fff;
}

footer a {
  color: #fff;
  text-decoration: none;
}

footer a:hover {
  color: var(--primary-color);
}

footer a::after {
  color: var(--secondary-color);
}
