* {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
}

:root {
  --page-with: 1000px;
  --page-height: 1600px;
  --color-primary: #9bc7f9;
}

body {
  margin: 0;
  width: var(--page-with);
  height: var(--page-height);
  background: no-repeat center url("/img/background.jpg");

}

.container {
  display: flex;
  width: var(--page-with);
  height: var(--page-height);
  flex-direction: column;
  justify-content: space-between;
}

.content {
  flex-grow: 2;
  display: flex;

  flex-direction: column;
  justify-content: start;


}

h1 {
  font-size: 5rem;
  text-align: center;
  display: block;
  width: calc(var(--page-with) - 2rem);
  color: var(--color-primary);
}
.index h2 {
   font-size: 2rem;
   text-align: center;
   display: block;
   width: calc(var(--page-with) - 2rem);
   color: var(--color-primary);
 }

.container .nav {
  margin-top: 14rem;
  padding: 1rem;
  align-self: start;
  flex-grow: 1;
}

.chat .nav {
  margin-top: 7rem;
  margin-bottom: -7rem;
}

.footer {
  flex-grow: 1;
}

p {
  font-size: 2rem;
  text-align: center;
}

.content > p {

  width: calc(var(--page-with) / 3 * 2);
  align-self: center;
}

.btn {

  width: calc(var(--page-with) / 2);
  padding: 1rem;
  margin: 1rem 2rem;
  background: var(--color-primary);
  border-radius: 99999px;
  text-align: center;
}

a {
  text-align: center;
  text-transform: capitalize;
  font-size: 3rem;
  text-decoration: none;
  color: #fff;
}

.content .type-selector {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-content: center;
  flex-wrap: wrap;
}

.chat-window {
  display: flex;
  flex-direction: column;
  align-self: center;
  justify-content: start;
  background: white;
  box-shadow: #000 0 0 3rem -1rem;
  width: calc(var(--page-with) / 3 * 2);
  border-radius: 1rem;

}

.chat-window .chatting-with {
  display: flex;
  flex-direction: row;
  padding: 1rem 2rem;
  justify-content: start;
  line-height: 4rem;
}

.chatting-with img {
  width: 5rem;
  height: 5rem;
  border-radius: 9999px;
  margin-right: 1rem;
}

.message {
  max-width: 60%;
  margin: 1rem 2rem;

}

.message p {
  font-size: 1.5rem;
  margin: 1rem 2rem;
}

.message.message-me {
  background: lightgreen;
  align-self: end;

  border-radius: 2rem 2rem 0 2rem;
}

.message.message-me > p {
  text-align: end;
}

.message.message-response {
  background: lightblue;
  align-self: start;

  border-radius: 2rem 2rem 2rem 0;
}


.message.message-response > p {
  text-align: start;
}

.message.message-chat {
  margin: 0;
  min-width: calc(var(--page-with) / 3 * 2 - 2px);
  border: 1px black solid;
  border-radius: 1rem;
}

.message.message-chat > p {
  text-align: end;
}

.message.message-chat > i {
  margin-right: 1rem;
  border-radius: 99999px;
  padding: 0.5rem;
  border: 1px black solid;
}

.dodont .content {
  justify-content: center;
}

.dodont .item {
  padding: 0.25rem 1.75rem;
  margin: 1rem 2rem;
  border: 1px solid transparent;
  border-radius: 1rem;
  width: 66%;
}

.dodont .item p {

  font-size: 1.25rem;
}

.dodont h2 {
  font-size: 1.5rem;
}

.dont .item-row {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  margin-top: 2rem;
}

.dont .item {
  width: 21rem;
  height: 21rem;
  border-radius: 99999px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 1rem 2rem;
}

.dont .item img {
  width: 20rem;
  height: 20rem;
  border-radius: 99999px;
  align-self: center;
}

.dont .nav {
  margin-top: 7rem;
  margin-bottom: -7rem;
}

.item.do {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}

.item.dont {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

.item.item-left {
  align-self: start;
}

.item.item-right {
  align-self: end;
}

.dont-popup-blur {
  backdrop-filter: blur(10px);
  position: absolute;
  z-index: 9998;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
}

.dont-popup {
  position: absolute;
  z-index: 9999;
  width: calc(var(--page-with) / 6 * 4);
  height: calc(var(--page-height) / 8 * 5);
  left: calc(var(--page-with) / 6);
  top: calc(var(--page-height) / 8 * 1.5);
  box-shadow: black 0 0 4rem 0.5rem;
  border-radius: 1rem;
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;

}

.dont-popup .nav {
  margin: 0;
  flex-grow: 0;
  display: flex;
  flex-direction: row;
  justify-content: end;
  width: calc(var(--page-with) / 6 * 4 - 2rem);
}

.dont-popup .nav p {
  margin: 0;
}

.dont-popup .content {
  width: calc(var(--page-with) / 6 * 4);
}

.dont-popup h2 {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 3rem;
  margin-top: 0;
}

.dont-popup .content p {
  width: calc(var(--page-with) / 6 * 4 - 6rem);
  padding: 0;
  margin: 0 0 8rem;
  text-align: start;
}

.dont-popup .content a {
  font-size: 2rem;
  text-transform: none;
  color: #721c24;
  font-weight: bold;

}


/*.dont .cross {*/
/*  width: 100px;*/
/*  height: 100px;*/
/*  position: relative;*/
/*  transform:rotate(45deg);*/
/*  -ms-transform:rotate(45deg);*/
/*  -webkit-transform:rotate(45deg); !* Safari and Chrome *!*/
/*}*/

/*.dont .cross:before, .dont .cross:after {*/
/*  content: "";*/
/*  position: absolute;*/
/*  z-index: -9999999;*/
/*  background: #d00;*/
/*}*/

/*.dont .cross:before {*/
/*  left: 50%;*/
/*  width: 30%;*/
/*  margin-left: -15%;*/
/*  height: 100%;*/
/*}*/

/*.dont .cross:after {*/
/*  top: 50%;*/
/*  height: 30%;*/
/*  margin-top: -15%;*/
/*  width: 100%;*/
/*}*/

.dont {
  position: relative;
}

.dont img.overlay {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  opacity: 0.5;

}

.dont h2.overlay {
  position: absolute;
  top: -4.5rem;
  left: 0.5rem;
  width: calc(100% - 1rem);
  text-align: center;
  font-size: 2rem;
}
