@import url('https://fonts.googleapis.com/css2?family=DynaPuff&family=Roboto&family=The+Nautigal:wght@700&display=swap');

body {
    background-image: url('../assets/pet-background.png');
    display: flex;
    justify-content: center;
    margin: 0px;
    min-height: 100%;
    width: 100%;
    font-family: 'DynaPuff', cursive;
}

html {
    margin: 0px;
    height: 100%;
    width: 100%;
}

.avatar-class {
    width: 75px;
    height: 75px;
    border-radius: 100%;
    object-fit: cover;
}

.div-container {
    width: 50%;
    display: flex;
    margin: 3px;
    background-color: white;
    justify-content: flex-start;
    align-items: center;
    border-radius: 15px;
}

.chat-container {
    background-color: #F9CEEE;
    height: 100px;
    overflow-x: hidden;
    overflow-y: auto;
    text-align:left;
    height: 60%;
    width: 60%;
    border: 3px solid white;
    border-radius: 15px;
    box-shadow: 0px 0px 29px 8px rgba(0,0,0,0.75);
    scrollbar-width: auto;
    scrollbar-color: #8f54a0 #ffffff;
}

  *::-webkit-scrollbar {
    width: 17px;
  }

  *::-webkit-scrollbar-track {
    background: #ffffff;
  }

  *::-webkit-scrollbar-thumb {
    background-color: #8f54a0;
    border-radius: 10px;
    border: 3px solid #ffffff;
  }

.dog-park-title {
  color: #97C4B8;
  text-shadow: 4px 4px 2px rgba(150, 150, 150, 1);
font-family: 'DynaPuff', cursive;
font-size: 4.5rem;
}

.chat-list {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    list-style: none;
    padding: 0;
    margin: 1rem;
}



.entire-page {
    width: 90vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.commentP {
font-size: 1rem;
}

.your-message{
    flex-direction: row-reverse;
    align-self: end;
    background-color: lightblue;
    justify-content: space-between;
}

.chat-form {
    width: 50%;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.chat-input{
    padding: 6px;
    font-size: 16px;
    border-width: 2px;
    border-color: #CCCCCC;
    background-color: #FFFFFF;
    color: #000000;
    border-style: solid;
    border-radius: 8px;
    box-shadow: 0px 0px 5px rgba(0,0,0,.88);
    text-shadow: 0px 0px 5px rgba(66,66,66,.75);
    margin: 20px;
    font-family: 'DynaPuff', cursive;
}

.chat-button {
  background: #f9ceee;
  background-image: -webkit-linear-gradient(top, #f9ceee, #CCF3EE);
  background-image: -moz-linear-gradient(top, #f9ceee, #CCF3EE);
  background-image: -ms-linear-gradient(top, #f9ceee, #CCF3EE);
  background-image: -o-linear-gradient(top, #f9ceee, #CCF3EE);
  background-image: linear-gradient(to bottom, #f9ceee, #CCF3EE);
  -webkit-border-radius: 28;
  -moz-border-radius: 28;
  border-radius: 28px;
  -webkit-box-shadow: 1px 3px 8px #0f0f0f;
  -moz-box-shadow: 1px 3px 8px #0f0f0f;
  box-shadow: 1px 3px 8px #0f0f0f;
  font-family: Arial;
  color: black;
  font-size: 26px;
  padding: 10px;
  text-decoration: none;
  font-family: 'DynaPuff', cursive;
  transition: all 0.5s ease;
}

.chat-button:hover {
  background: #F9F3EE;
  background-image: -webkit-linear-gradient(top, #F9F3EE, #97C4B8);
  background-image: -moz-linear-gradient(top, #F9F3EE, #97C4B8);
  background-image: -ms-linear-gradient(top, #F9F3EE, #97C4B8);
  background-image: -o-linear-gradient(top, #F9F3EE, #97C4B8);
  background-image: linear-gradient(to bottom, #F9F3EE, #97C4B8);
  text-decoration: none;
  transition: all 0.5s ease;   
  transform: translate(0px, 5px); 
  cursor: pointer;
}


.user-container {
    background-color: #4444441e;
    margin: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 10px;
    border-radius: 15px;
}

.sideMenu {
	height: 100%;
	width: 0;
	position: fixed;
	z-index: 1;
	top: 0;
	left: 0;
	background: #97C4B8;
	overflow-x: hidden;
	transition: 0.5s;
	padding-top: 60px;
}

.sideMenu a {
	padding: 8px 8px 8px 32px;
	text-decoration: none;
	color:#F9CEEE;
	display: block;
	transition: 0.3s;
	font-size: 18px;
	margin-bottom: 20px;
	text-transform: uppercase;
	font-weight: 900;
}
.sideMenu a i {
	padding-right: 15px;
}
.main-menu a:hover {
	color: #f1f1f1;
	background: #111;
}
.sideMenu .closebtn {
	position: absolute;
	top: 0;
	right: 25px;
	font-size: 36px;
	margin-left: 50px;
}
#content-area {
	transition: margin-left .5s;
	padding: 16px;
}
.content-text {
	padding: 100px 180px;
	text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: black; 
    font-family: 'DynaPuff', cursive;
}
.content-text h2 {
	background: #97C4B8;
	display: inline-block;
	padding: 15px 35px;
	text-transform: uppercase;
	font-size: 50px;
	color: #F9F3EE;
    border-radius: 15px;
}
.content-text h3 {
	text-transform: uppercase;
	font-size: 45px;
	margin: 0;
	letter-spacing: 3px;
}

.content-text p {
    font-size: 35px;
    margin: 0;
    letter-spacing: 2px;
    color: #F9F3EE;
}