@font-face {
  src: url("./fonts/coolvetica_rg.otf");
  font-family: "Coolvetica";
}

@font-face {
  src: url("./fonts/Goku.ttf");
  font-family: "Goku";
}

:root {
  --goku-dark: #103c4c;
  --goku-light: #faeddc;
  --goku-fire: #ee5819;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  color: var(--goku-dark);
  background: var(--goku-light);
  text-align: center;
  font-family: "Coolvetica", sans-serif;
}

header {
  margin: 100px auto;
}

.heading {
  font-family: "Goku", sans-serif;
}

.avatar-img {
  width: 200px;
  border-radius: 100%;
  border: 5px solid var(--goku-dark);
}

/* Fact */
.fact {
  margin-bottom: 50px;
}

.title {
  font-size: 30px;
  margin-bottom: 6px;
}

.subtitle {
  font-size: 23px;
  color: var(--goku-fire);
  margin-top: 0;
  margin-bottom: 8px;
}

.subtitle::after {
  content: ")";
}

.subtitle::before {
  content: "(";
}

.reveal {
  margin: 0 auto;
  width: 300px;
  height: 300px;
  background-image: url("images/avatar.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border: 5px solid var(--goku-fire);
  cursor: pointer;
}

/* Reveal on Hover */
.g1:hover {
  background-image: url("./images/g1.gif");
}
.g2:hover {
  background-image: url("./images/g2.webp");
}
.g3:hover {
  background-image: url("./images/g3.webp");
}
.g4:hover {
  background-image: url("./images/g4.webp");
}
.g5:hover {
  background-image: url("./images/g5.webp");
}
