/*!*********************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./src/reset.css ***!
  \*********************************************************************************************/
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/*!*************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js!./src/index.scss ***!
  \*************************************************************************************************************************************/
* {
  box-sizing: border-box;
  font-family: sans-serif;
}

body {
  background-color: #333;
  background-image: url("../src/cssbackground/background1.png");
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  margin: 0;
}

#view-canvas {
  background: white;
  border-radius: 5px;
  flex: 1;
}

.container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  border: 7px solid black;
  border-radius: 3%;
}

h1 {
  font-size: 40px;
  font-family: Cascadia Code, sans-serif;
}

.pokemon {
  display: none;
}

.pokemon-button {
  width: 100px;
  height: 100px;
  cursor: pointer;
  border: 3px solid black;
  border-radius: 10px;
}

.pokemon-button:hover {
  background-color: rgb(245, 142, 126);
  transform: scale(1.15);
  transition: background-color 0.3s, transform 0.3s;
}

.links-top-right {
  z-index: 9999;
  position: fixed;
  top: 1%;
  right: 1%;
  display: flex;
  align-items: center;
  gap: 5%;
}

.modal {
  position: fixed;
  z-index: 8;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
}

.modal-content {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 5% auto;
  width: 100%;
  max-width: 700px;
  height: 70%;
  border: 10px solid #000;
  background: red;
  border-radius: 50%;
  overflow: hidden;
}

.center-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  background: #000;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.center-circle2 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  background: white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.red-ball {
  height: 50%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: black;
  text-align: center;
  border-bottom: 5px solid black;
}

.white-ball {
  height: 50%;
  width: 100%;
  max-width: 800px;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: black;
  text-align: center;
  border-top: 5px solid black;
}

#modal-title {
  font-family: "Pokemon Solid", sans-serif;
  letter-spacing: 2px;
  z-index: 10;
  border-radius: 5px;
  color: yellow;
  text-shadow: 0 0 blue, -3px -3px blue, 3px -3px blue, -3px 3px blue, 3px 3px blue;
}

#modal-message {
  max-width: 60%;
  font-size: 25px;
}

#start-button {
  font-size: 28px;
  font-weight: bold;
  margin-top: 30px;
  color: rgb(0, 0, 0);
  background: linear-gradient(to right, #ff8989, #fdfdfd);
  border-radius: 50px;
  transition: background-color 0.3s ease;
}

#start-button:hover {
  background: linear-gradient(to left, #ff8989, #fdfdfd);
  cursor: pointer;
}

#victory-modal-title {
  font-family: "Pokemon Solid", sans-serif;
  letter-spacing: 2px;
  z-index: 10;
  border-radius: 5px;
  color: yellow;
  text-shadow: 0 0 blue, -3px -3px blue, 3px -3px blue, -3px 3px blue, 3px 3px blue;
}

#gameover-modal-title {
  font-family: "Pokemon Solid", sans-serif;
  letter-spacing: 3px;
  z-index: 10;
  border-radius: 5px;
  color: yellow;
  text-shadow: 0 0 blue, -3px -3px blue, 3px -3px blue, -3px 3px blue, 3px 3px blue;
}

#victory-modal-message {
  max-width: 60%;
  font-size: 40px;
}

#gameover-modal-message {
  max-width: 80%;
  font-size: 20px;
}

#v-play-again {
  font-size: 28px;
  font-weight: bold;
  margin-top: 20px;
  color: rgb(0, 0, 0);
  background: linear-gradient(to right, #ff8989, #fdfdfd);
  border-radius: 50px;
}

#go-play-again {
  font-size: 28px;
  font-weight: bold;
  margin-top: 20px;
  color: rgb(0, 0, 0);
  background: linear-gradient(to right, #ff8989, #fdfdfd);
  border-radius: 50px;
}

#v-play-again:hover {
  background: linear-gradient(to left, #ff8989, #fdfdfd);
  cursor: pointer;
}

#go-play-again:hover {
  background: linear-gradient(to left, #ff8989, #fdfdfd);
  cursor: pointer;
}

.game-title {
  font-family: "Pokemon Solid", sans-serif;
  color: yellow;
  text-shadow: 0 0 blue, -3px -3px blue, 3px -3px blue, -3px 3px blue, 3px 3px blue;
  padding-bottom: 2%;
}

#music-toggle {
  z-index: 9999;
  position: absolute;
  top: 12%;
  right: 1%;
  display: flex;
  align-items: center;
  background: linear-gradient(to right, #ff8989, #fdfdfd);
  font-size: 20px;
  font-weight: bold;
  color: rgb(0, 0, 0);
  border-radius: 50px;
  transition: background-color 0.3s ease;
}

#music-toggle:hover {
  background: linear-gradient(to left, #ff8989, #fdfdfd);
  cursor: pointer;
}
