@import url('https://fonts.googleapis.com/css2?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');

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

body {
  background-color: #175b7a;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}

body a {
  text-decoration: none;
  color: #fff;
  position: absolute;
  bottom: 30px;
  left: 30px;
}

label {
  font-size: 16px;
}

select {
  background-color: transparent;
  border: none;
  font-size: 16px;
  color: #575757;
  text-align: center;
}

select:focus,
button:focus,
input:focus {
  outline: 0;
}

.settings-btn {
  position: absolute;
  bottom: 30px;
  right: 30px;
  color: #fff;
  background-color: transparent;
  border: none;
  font-size: 25px;
  cursor: pointer;
}

.settings {
  position: absolute;
  bottom: 80px;
  right: 30px;
  width: 200px;
  background-color: #ffffff;
  border-radius: 4px;
  height: 70px;
  color: #575757;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(0);
  transition: transform 0.3s ease-in-out;
}

.settings.hide {
  display: none;
}

.container {
  background-color: #fff;
  padding: 30px;
  border-radius: 4px;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.479);
  color: #000000;
  position: relative;
  text-align: center;
  width: 500px;
  margin-top: 100px;
}

h2 {
  background-color: #818181;
  color: #fff;
  padding: 8px;
  border-radius: 4px;
}

h1 {
  margin: 0;
}

h1#word{
  color: #3293c0;
}

.score-time {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  margin-bottom: 30px;
  color: #818181;
}

input {
  border: 1px solid #c9c9c9;
  border-radius: 4px;
  font-size: 14px;
  width: 300px;
  padding: 12px 20px;
  margin-top: 10px;
  text-align: center;
}

.end-game-container {
  background-color: inherit;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  color: #575757;
}

button#reload{
  background-color: #3293c0;
  color: #fff;
  padding: 8px 16px;
  border: none;
  border-radius: 3px;
  margin-top: 20px;
  cursor: pointer;
}

button#reload:hover{
  background-color: #3293c0b6;
}

