/* fonts  */
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

.hidden {
  display: none !important;
}

body {
  margin: 0;
  font-family: "Josefin Sans", sans-serif;
  background-image: url("medias/body-bg-edit.jpg");
}

h2,
h3,
h4,
h5,
p {
  margin: 0;
}

p,
ol,
li,
ul {
  font-family: "Poppins", Helvetica, sans-serif;
}

main {
  /* position: relative; */
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.screen{
  width: 800px;
  height: 700px;

  /* width:60%; 
  height:75%; */
}

#starting-screen,
#instruction-screen,
#gameover-screen,
#menu-screen,
#music-screen,
#credit-screen {
  background-image: url("medias/cheesy_bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: rgb(141, 141, 194);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#mobile-screen{ 
  width:75%; 
  height:60%; 
  display: flex;
  justify-content: center;
  text-align: center;

  img{ 
    width:70%;
    height:60%; 

    @media (max-width: 500px){ 
      width: 250px;
      height: 250px;
    }
  }
}

.content {
  background-color: rgba(0, 0, 0, 0.849);
  color: rgb(255, 205, 40);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  border-radius: 50px;
  row-gap: 0.75rem;
  width: 450px;
  button {
    width: 150px;
    padding: 0.25rem;
    border-radius: 10px;
    border: none;
    background-color: rgb(255, 205, 40);
    font-family: "Poppins", Helvetica, sans-serif;
    font-size: 1.2rem;
  }
  p,
  li {
    font-size: 1.2rem;
  }
  h2 {
    margin: 0.5rem;
    font-size: 30px;
  }
  h3{ 
    font-size: 25px;
  }
}

a, a:hover::after, a:hover {
  text-decoration: none; 
  color:#b9babc;
}

#credit-screen .content .text{ 
  text-align: center;
}

.music-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: flex-end;
  justify-content: space-evenly;
  align-items: center;
  .play,
  .pause {
    width: fit-content;
    height: fit-content;
    padding: 0;
    border: none;
    background-color: rgba(255, 255, 255, 0);
    display: flex;
  }
  .volume-svg {
    display: flex;
    width: 10%;
  }
}

.footer, .footer a{ 
  font-weight: 1000;
  color:black;
}
