@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");

:root {
  --primary-accent: #f08519;
  --primary-bgcolor: rgba(228, 108, 29, 0.8);
  --primary-black: #1B1B1B;
  --primary-color: #F2F2F2;
  /* color: var(--primary-color); */
}

* {
  font-family: Poppins, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html,
body {
  margin: 0;
}

body {
  background-color: var(--primary-color);
}

.container {
  width: 80%;
  height: 90%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.image-container {
  width: 100%;
  margin-top: 5%;
  text-align: center;
}

h1 {
  color: #1F1F1F;
  margin-top: -10px;
  text-align: center;
  font-weight: bolder;
  font-size: x-large;
}

h2 {
  margin-top: 30px;
  color: var(--primary-accent);
  letter-spacing: 1px;
  text-align: left;
  margin-left: 25px;
  font-weight: bolder;
  font-size: large;
}

span {
  color: var(--primary-accent);
}

.links-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.link {
  min-width: 70% !important;
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  text-decoration: none;
}

/* Button Link */
.button-x {
  all: unset;
  width: 100px;
  height: 30px;
  font-size: 16px;
  background: transparent;
  border: none;
  position: relative;
  color: #f0f0f0;
  cursor: pointer;
  z-index: 1;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  margin: 5px 5px;
}

.button-x::after,
.button-x::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -99999;
  transition: all .4s;
}

.button-x::before {
  transform: translate(0%, 0%);
  width: 100%;
  height: 100%;
  background: #28282d;
  border-radius: 10px;
}

.button-x::after {
  transform: translate(10px, 10px);
  width: 35px;
  height: 35px;
  background: #ffffff15;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 50px;
}

.button-x:hover::before {
  transform: translate(5%, 20%);
  width: 110%;
  height: 110%;
}

.button-x:hover::after {
  border-radius: 10px;
  transform: translate(0, 0);
  width: 100%;
  height: 100%;
}

.button-x:active::after {
  transition: 0s;
  transform: translate(0, 5%);
}

/* End Button Link */

/* Share Button */
#btn {
  z-index: 999;
  position: fixed;
  bottom: 1px;
  right: 1px;
  font-weight: bolder;
  font-size: 15px;
  line-height: 10px;
  max-width: 5px;
}

/* End Share Button */

/*-- Padding Bottom --*/

.pb-5 {
  padding-bottom: 5px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-20 {
  padding-bottom: 20px;
}

/* Responsive */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }

  .link {
    width: 100%;
  }
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}