/*---------------------------------------/*
 # SETTINGS
/*---------------------------------------*/
/*---------------------------------------/*
 # GENERIC - BOOTSTRAP
/*---------------------------------------*/
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: Georgia, "Times New Roman", Times, serif;
  color: white;
}

@media (min-width: 993px) {
  .navbar-nav {
    gap: 2rem;
  }
}
.navbar-toggler {
  border: none;
}
.navbar-toggler-icon {
  background-image: url(../img/hamburger.svg);
}

.nav-link {
  color: white;
}

/*---------------------------------------/*
 # ELEMENTS
/*---------------------------------------*/
body {
  background-color: #262626;
  color: white;
  margin: 0 5rem;
}
@media (min-width: 993px) {
  body {
    margin: 0 20rem;
  }
}

h1 {
  margin-bottom: 1rem;
  color: white;
}

p {
  font-size: x-large;
}

section {
  border-bottom: 2px solid white;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
}

/*---------------------------------------/*
 # OBJECTS
/*---------------------------------------*/
/*---------------------------------------/*
 # COMPONENTS
/*---------------------------------------*/
.c-top {
  position: fixed;
  bottom: 0.5rem;
  right: 0.5rem;
  z-index: 1000;
  font-size: 4rem;
}

.c-nav {
  background-color: #6b252d !important;
  color: white !important;
  padding: 0.5rem 5rem;
  border-bottom: 2px solid #262626;
}

.c-main {
  padding: 2rem 0 0;
}

.c-card {
  background-color: #6b252d;
  margin-bottom: 1rem;
  overflow: hidden !important;
}

.c-game {
  text-align: center;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 0;
}
.c-game__img {
  border-top-left-radius: 5rem;
  border-top-right-radius: 5rem;
  width: 95%;
}
.c-game__img--variation {
  border-radius: 1rem;
}
.c-game__text {
  background-color: #6b252d;
  padding: 1rem 0 0;
  border-bottom-left-radius: 5rem;
  border-bottom-right-radius: 5rem;
  width: 95%;
}
.c-game__title {
  transition: color 0.3s;
}
.c-game__title:hover {
  color: #e2d2c8;
}
.c-game__header {
  padding-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.c-game__link {
  text-decoration: none;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.c-skill__title {
  text-align: center;
  background-color: #6b252d;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  padding: 0.5rem 1rem;
}
.c-skill__title--variation {
  border-radius: 1rem;
}
.c-skill__list {
  padding-top: 0.5rem;
  border: 5px solid #6b252d;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
}

.c-link {
  text-decoration: none;
}

.c-socials {
  padding: 5rem 0 2rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
}
.c-socials__img {
  height: 3rem;
  transition: height 0.3s;
}
.c-socials__img:hover {
  height: 3.5rem;
}

.c-button {
  margin: 10rem 0 5rem;
}
.c-button__link {
  background-color: #6b252d;
  color: white;
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 5rem;
  font-size: xx-large;
  transition: color 0.3s;
}
.c-button__link:hover {
  color: #e2d2c8;
}

.c-credit {
  border-top: dotted rgb(185, 185, 185) 2px;
  padding: 1rem 0;
  margin-top: 3rem;
  text-align: center;
  color: rgb(185, 185, 185);
}
.c-credit__icon {
  color: rgb(185, 185, 185);
}

/*---------------------------------------/*
 # UTILITIES
/*---------------------------------------*/