/* INTER FONT */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500&display=swap");

body {
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--light-blue-100);
  padding: 25px 0px;
  margin: 0;
  display: flex;
  justify-content: center;
}

/* COLORS */

:root {
  --light-blue-100: #f3f5fc;
  --light-blue-200: #eff1fa;
  --light-blue-300: #e9ecf8;
  --light-blue-400: #aab2d5;
  --dark-blue-300: #0a3871;
  --gray-400: #495057;
  --gray-500: #343a40;
}

#logo {
  position: absolute;
  left: 0;
  height: 48px;
  cursor: pointer;
}

/* CLASS */

.flex {
  display: flex;
}

.display {
  display: none;
}

.btnBlue {
  padding: 24px;
  width: 328px;
  height: 67px;
  border: none;
  background: var(--dark-blue-300);
  border-radius: 24px;
  font-size: 16px;
  color: white;
  margin-right: 24px;
  line-height: 19px;
}

.btnGrey {
  padding: 24px;
  width: 328px;
  height: 67px;
  background: var(--light-blue-100);
  border: 1px solid var(--dark-blue-300);
  box-sizing: border-box;
  border-radius: 24px;
  color: #0a3871;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
}

.letter {
  border-bottom: 3px solid #0a3871;
  display: inline-flex;
  font-size: 48px;
  align-items: center;
  justify-content: center;
  margin: 0 10px;
  height: 50px;
  width: 80px;
  border-radius: 2px;
  color: #0a3871;
  font-weight: 400;
  margin-bottom: 25px;
}

/* GAME DISPLAY */

#game-container {
  /* display: flex; */
  flex-direction: column;
  align-items: center;
  align-content: center;
  max-width: 80vw;
  height: 100%;
}

#myCanvas {
  margin: 50px 0px;
}

#wordsContainer {
  margin-bottom: 1px;
  font-size: 60px;
  color: var(--dark-blue-300);
}

#wrong-letters {
  margin-bottom: 20px;
  display: flex;
  font-size: 26px;
  gap: 24px;
}

#wordsContainer {
  display: flex;
}

#words {
  display: flex;
  position: absolute;
}

#tableroBtn {
  display: flex;
}

#lines {
  display: flex;
  flex-direction: row;
  margin-right: 20px;
}

#singleLetter {
  margin-bottom: 20px;
}

#singleWrong {
  font-size: 20px;
  margin-right: 10px;
  color: #495057;
}

/* ADD NEW WORD DISPLAY */

#text1 {
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 150%;
  color: var(--gray-400);
  opacity: 0.8;
  margin: 0px 8px;
}

#container1 {
  display: flex;
  padding: 0px;
}

textarea {
  display: block;
  margin-top: 80px;
  height: 100%;
  width: 100%;
  left: 240px;
  border: none;
  background: transparent;
  resize: none;
}

textarea[type="text"],
:focus-visible {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 32px;
  line-height: 150%;
  outline: none;
  color: var(--dark-blue-300);
  word-wrap: break-word;
  word-break: break-all;
  height: 100%;
  width: 100%;
}

::placeholder {
  color: var(--dark-blue-300);
}

#add-word {
  height: 90vh;
  flex-direction: column;
  justify-content: space-around;
}

/* HOME PAGE DISPLAY*/

#homePage {
  flex-direction: column;
  gap: 30px;
  margin-top: 25vh;
}

.btn1 {
  height: 114px;
}

.btn2 {
  height: 67px;
}

button {
  cursor: pointer;
}

.block {
  display: block;
  padding: 24px;
  width: 328px;
  height: 67px;
  border: none;
  background: var(--dark-blue-300);
  border-radius: 24px;
  font-size: 16px;
  color: white;
  margin-right: 24px;
  line-height: 19px;
}
