@import url("https://fonts.googleapis.com/css?family=Fira+Code");
body {
  font-family: Fira code;
  font-size: calc(1em + 1vw);
}
.dark-body {
  background-color: #000000;
  color: white;
}
.light-body {
  background-color: #ffffff;
}
h1 {
  font-size: calc(1em + 3vw);
  text-align: center;
}
.paragraph {
  text-align: center;
}
a {
  text-decoration: none;
}
a:link {
  color: #0000ff;
}
a:visited {
  color: #0000ff;
}
a:hover {
  color: #1069c9;
}
footer {
  font-size: calc(2em);
  padding: 5px;
}
.dark-body .emailColor {
  color: white;
}
.light-body .emailColor {
  color: black;
}
#button {
  color: #ffcc00;
}
.fadeOut {
  animation: fadeInOut 6s infinite;
}
@keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
nav ul li {
  display: inline;
}
.links {
  display: flex;
  justify-content: center;
  border: 5px solid black;
  border-radius: 25px;
  margin-bottom: 2vh;
}
.light-body .links {
  background-color: #ffffff;
}
.dark-body .links {
  background-color: #3c3c3e;
}
.fa-ul{
  margin-left: 2em;
  padding: 0 2vw 0 2vw;
}
.fa-ul li {
  margin-bottom: 1em;
  font-size: calc(1em +4vw);
  color: #ffcc00;
}
.centering {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.sticker {
  padding: 0 4vw 0 4vw;
  border: 5px solid black;
  border-radius: 25px;
  position: relative;
  min-width: 40%;
}
.light-body .sticker {
  background-color: #e6e5ea;
}
.dark-body .sticker {
  background-color: #363638;
}
.sticker::after {
  content: "";
  position: absolute;
  top: -5px; /* Adjust based on your preference */
  left: -5px; /* Adjust based on your preference */
  right: -5px; /* Adjust based on your preference */
  bottom: -3vh; /* Adjust based on your preference */
  border: 5px solid black; /* Border properties */
  border-radius: 25px;
  z-index: -1; /* Ensure it stays behind the box */
}
.dark-body .sticker::after{
  background-color: #222224;
}
.light-body .sticker::after{
  background-color: #8f8e93;
}
.mini div {
  width: 100%;
}