/* HOME PAGE */
.home-title-image {
  margin: auto;
  display: block;
  height: 100%;
  width: auto;
  margin-bottom: 30px;
}

.menu-container {
  height: 500px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.sub-menu-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.slide-to-the-left {
  margin-right: 20px;
}

.menu-container-item {
  background-color: rgb(120, 163, 227);
  color: white;

  border: 2px solid rgb(120, 163, 227);
  border-radius: 24px;

  width: 400px;
  line-height: 50px;
  margin: 10px;
  transform: skew(-10deg);
  font-family: 'Convergence', sans-serif;
  box-shadow: 5px 5px;
}

.menu-container-item2 {
  background-color: rgb(120, 163, 227);
  color: white;

  border: 2px solid rgb(120, 163, 227);
  border-radius: 24px;

  width: 400px;
  line-height: 50px;
  margin: 10px;
  transform: skew(-10deg) translate(-30px);
  font-family: 'Convergence', sans-serif;
  box-shadow: 5px 5px;
}

.menu-container-item3 {
  background-color: rgb(120, 163, 227);
  color: white;

  border: 2px solid rgb(120, 163, 227);
  border-radius: 24px;

  width: 400px;
  height: 380px;
  line-height: 50px;
  margin: 10px;
  transform: skew(-10deg);
  font-family: 'Convergence', sans-serif;
  box-shadow: 5px 5px;
}

.menu-container-item:hover {
  background-color: white;
  color: rgb(120, 163, 227);
  cursor: pointer;
}
.menu-container-item2:hover {
  background-color: white;
  color: rgb(120, 163, 227);
  cursor: pointer;
}

.menu-container-item3:hover {
  background-color: white;
  color: rgb(120, 163, 227);
  cursor: pointer;
}


.menu-container-word {
  padding: 60px 0px;
  transform: skew(10deg);
  font-size: 40px;
}

.extra-padding {
  padding: 100px 0px;
}



/* GAME PAGE */
.background {
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

.score-text {
  display: inline-flex;
  justify-content: center;
  background-color: white;
  color: rgb(29, 161, 242);

  font-family: 'Lato', sans-serif;
  text-align: center;
  font-size: 20px;
  transform: skew(10deg);
  border-radius: 16px;

  margin-right: 30px;
  margin-top: -110px;
  padding: 0px 12px;
  border: 4px solid rgb(29, 161, 242);
}

.score-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: right;
  align-items: center;
  padding: 5px;
}

.score-title {
  margin: auto;
}

.game-message {
  font-family: 'Convergence', sans-serif;
  text-align: center;
  font-size: 40px;
  width: 30%;

  background-color: white;
  color: rgb(29, 161, 242);
  border: 4px solid rgb(29, 161, 242);
  border-radius: 16px;
  padding: 5px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 25px;
}

.tweetbox {
  background-color: rgb(236, 240, 246);

  height: 250px;
  width: 550px;

  margin: auto;

  border-radius: 16px;
}

.pfp {
  background-color: rgb(205, 212, 223);
  
  height: 50px;
  width: 50px;

  margin: 10px;

  border-radius: 50%;
  float: left;
}

.name-and-handle {
  height: 50px;
  width: 40%;

  padding: 10px 0px;

  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.name {
  background-color: rgb(205, 212, 223);

  height: 20px;
  width: 100%;
}

.handle {
  background-color: rgb(205, 212, 223);

  height: 20px;
  width: 100%;
}

.tweettext {
  font-family: 'Roboto', sans-serif;
  padding: 0px 20px;
}

.datetime {
  font-family: 'Roboto', sans-serif;
  color:rgb(134, 141, 151);

  padding-left: 20px;
  float: bottom;
}

.answer-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  opacity: 0;
  -webkit-transition: opacity 0.7s ease-in-out, margin-top 0.7s ease-in-out;
  -moz-transition: opacity 0.7s ease-in-out, margin-top 0.7s ease-in-out;
  -ms-transition: opacity 0.7s ease-in-out, margin-top 0.7s ease-in-out;
  -o-transition: opacity 0.7s ease-in-out, margin-top 0.7s ease-in-out;
  transition: opacity 0.7s ease-in-out, margin-top 0.7s ease-in-out;
}

.answer-container.fade{
  opacity:1;
  margin-top: 30px;
}

.answer-container-item {
  background-color: rgb(29, 161, 242);
  color: rgb(255, 255, 255);
  font-family: 'Lato', sans-serif;

  border: 2px solid rgb(255, 255, 255);
  border-radius: 16px;

  width: 300px;
  line-height: 50px;
  transform: skew(-10deg);
  margin: 0px 16px;

  box-shadow: 5px 5px;
}

.answer-container-item:hover {
  background-color: white;
  color: rgb(29, 161, 242);
  cursor: pointer;
}

.unskew {
  transform: skew(10deg);
  padding: 7px;
}

.skew {
  transform: skew(-10deg);
  padding: 0px 7px;
}

.twitter-tweet {
  margin: auto;
}




/* FAIL PAGE */
.title-image {
  margin: auto;
  display: block;
  height: auto;
  width: 240px;
}

.title-image:hover {
  cursor: pointer;
}

.fail-score-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;

  margin-top: 50px;
}

.fail-score-text {
  color: #3AB5B8;
  background-color: white;
  display: flex;
  justify-content: center;

  font-family: 'Convergence', sans-serif;
  text-align: center;
  font-size: 25px;
  font-weight: bolder;

  margin: 0px 0px;
  padding: 0px 20px;
  border: 4px solid #3AB5B8;
  border-radius: 16px;
}

.just-some-padding {
  padding-left: 7px;
}

.message-container {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;

  margin-top: 100px;
}

.play-again-message {
  font-size: 30px;
  font-family: 'Convergence', sans-serif;
  color: #042B33;
}

.play-again-button {
  background-color: #042B33;
  color: white;

  border: 2px solid #042B33;
  border-radius: 16px;

  width: 200px;
  line-height: 50px;
  margin: 10px;
  transform: skew(-10deg);
}

.play-again-button:hover {
  background-color: white;
  color: #042B33;
  cursor: pointer;
}

.play-again-text {
  font-size: 20px;
  font-family: 'Convergence', sans-serif;
}

/* CONTACT PAGE */

.title {
  display: flex;
  justify-content: center;
  font-family: Arial, Helvetica, sans-serif;
}

.socials {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.text {
  transform: skew(0deg);
}

.info {
  background-color:rgb(24, 68, 134);
  border: 1px solid rgb(120, 187, 203);
  color: white;
  width: 100px;
  height: 80px;
  transform: skew(-10deg);
  padding-left: 5px;
  padding-right: 5px;
  margin-top: 50px;
  margin-left: 15px;
  margin-right: 15px;
  cursor: pointer;
  float: left;
}

.btn-text {
  transform: skew(10deg);
  padding: 15px;
}

.socials-title {
  font-family: 'Convergence', sans-serif;
  text-align: center;
  font-size: 50px;
  color:rgb(24, 68, 134);

  padding-top: 20px;
  padding-bottom: 80px;
}

.socials-container {
  background-color: rgb(240, 233, 156);
  color: rgb(116, 118, 63);
  font-family: 'Convergence', sans-serif;

  border: 2px solid rgb(116, 118, 63);
  border-radius: 16px;

  width: 120px;
  line-height: 50px;
  transform: skew(-10deg);
  margin: 0px 20px;
  box-shadow: 3px 3px;
}

.socials-container:hover {
  background-color: white;
  color: rgb(116, 118, 63);
  cursor: pointer;
}

.socials-png {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 70px;
  width: 400px;
  transform:rotate(30deg);
}

.socials-background {
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

.nextButton{
  background-color: rgb(29, 161, 242);
  color: white;
  font-family: 'Lato', sans-serif;

  border: 2px solid rgb(255, 255, 255);
  border-radius: 30px;

  width: 100px;
  line-height: 50px;
  transform: skew(-10deg);
  margin: 0px 16px;

  box-shadow: 5px 5px;
  margin-bottom: 200px;
  margin-left: 73vw;
  
}

.nextButton:hover {
  background-color: white;
  color: rgb(29, 161, 242);
  cursor: pointer;
}