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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Otomanopee One", sans-serif;
}

body {
  background-image: url("./images/bg/bg.jpg");
}

header {
  padding: 5px;
}

header > h1 {
  /* color: #292c34; */
  color: whitesmoke;
  text-align: center;
  font-size: 60px;
}

.score-board {
  margin: 20px auto;
  border: 3px solid white;
  border-radius: 4px;
  width: 200px;
  color: white;
  font-size: 46px;
  text-align: center;
  padding: 15px 20px;
  position: relative;
}

.badge {
  background-color: #e2584d;
  color: white;
  font-size: 14px;
  padding: 2px 10px;
}

#user-label {
  position: absolute;
  top: 30px;
  left: -25px;
}

#computer-label {
  position: absolute;
  top: 30px;
  right: -30px;
}

img {
  max-width: 100%;
  max-height: 100%;
}

.bang-image{
  position: absolute;
  top: 20%;
  width: 27%;
  height: auto;
  left: 66%;
  border: 3px solid white;
  border-radius: 4px;
}

.saitama-image{
  position: absolute;
  top: 20%;
  width: 27%;
  height: auto;
  right: 66%;
  border: 3px solid white;
  border-radius: 4px;
}


.result-icons {
  margin: 20px 0px;
  text-align: center;
}

.result-icon {
  border: 4px solid white;
  border-radius: 50%;
  display: inline-block;
  padding: 10px;
  margin: 0px 15px;
  transition: all 0.3s ease;
  width: 150px;
  height: auto;
}

.result {
    color: white;
    font-size: 35px;
    margin-top: -15px;
  }
  
  .result > p {
    text-align: center;
    font-weight: bold;
  }
  

.choices {
  margin: 50px 0px;
  text-align: center;
  margin-top: 10px;
}

.choice {
  border: 4px solid white;
  border-radius: 50%;
  display: inline-block;
  padding: 10px;
  margin: 0px 15px;
  transition: all 0.3s ease;
  width: 90px;
  height: auto;
  margin-bottom: -20px;
}

.choice:hover{
    background-color: #24272E;
    cursor: pointer;
}

.cross-text:hover{
    text-decoration: line-through;
}

.fa-github {
  color: white;
  font-size: 24px;
  transition: transform 0.3s ease-in-out;
}

.fa-github:hover {
  transform: rotate(360deg) scale(1.2);
}

.github-name{
  color: white;
}

a{
  text-decoration: none;
}

.green-glow {
  border: 4px solid #4dcc7d;
  box-shadow: 0 0 10px #31b43a;
}

.red-glow {
  border: 4px solid #fc121b;
  box-shadow: 0 0 10px #d01115;
}

.gray-glow {
  border: 4px solid #464647;
  box-shadow: 0 0 10px #25292b;
}
