@import url('https://fonts.googleapis.com/css2?family=Varela+Round&display=swap');

:root {
  --black: #35393C;
  --red: #FE5F55;
  --green: #40C9A2;
  --yellow: #F9DC5C;
  --blue: #7D8CC4;
  --white: #FFFFFF;
}

* {
}

body {
  background-color: #35393C;
  font-family: "Varela Round", serif;
  color: var(--white);
}

.varela-round-regular {
  font-family: "Varela Round", serif;
  font-weight: 400;
  font-style: normal;
}

.tiles {
  display: grid;
  grid-template-columns: repeat(2, 225px);
  grid-template-rows: repeat(2, 225px);
}

.tile {
  transition: all .05s ease-in-out; 
  height: 200px;
  width: 200px;
  margin: auto;
  background-color: var(--green);
}

.tile:hover {
  transform: scale(0.97); 
}

#start-button {
  transition: all .05s ease-in-out; 
}

#start-button:hover {
  transform: scale(0.95); 
}

.main-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10vh;
}

#red {
  background-color: #ae252c;
  border: solid black 5px;
  /* ae252c FB3640*/
  border-top-right-radius: 100%;
}

#yellow {
  background-color: #ac861f;
  border: solid black 5px;
  /* ac861f F9C22E*/
  border-bottom-left-radius: 100%;
}

#green {
  background-color: #216325;
  border: solid black 5px;
  /* 216325 3CB043*/
  border-top-left-radius: 100%;
}

#blue {
  background-color: #0e4970;
  border: solid black 5px;
  /* 0e4970 197BBD*/
  border-bottom-right-radius: 100%;
}

.tile-cover {
  position: absolute;
  border: solid black 5px;
  margin: 145px;
  width: 150px;
  height: 150px;
  border-radius: 100%;
  background-color: var(--black);
  display: flex;
  justify-content: center;
  align-items: center;
}

#simon-text {
  font-size: 26px;
  text-align: center;
}

.button-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 400px;
  width: 200px;
}

.button {
  font-family: "Varela Round", serif;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  border: solid black 5px;
  background-color: #e6e6e6;
  color: black;
  font-weight: 600;
  font-size: 26px;
  text-align: center;
  margin: 10px;
  width: 200x;
  height: 60px;
}

.inputs-container {
  align-items: flex-start;
  align-content: flex-start;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  height: 400px;
  width: 200px;
  padding: 0px;
}

.input {
  border: solid black 3px;
  height: 45px;
  width: 45px;
  margin: 5px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  border-radius: 10px;
}

#highscore {
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: start;
  padding-top: 10px;
  flex: 0.5;
}

.title {
  font-size: 54px;
  font-weight: 500;
  text-align: center;
  margin-top: 50px;
}

button:disabled {
  background-color: #3f3f3f;
}

#instructions {
  width: 700px;
  font-size: 18px;
  text-align: center;
}

#instructions-container {
  display: flex;
  justify-content: center;
  
}
