@keyframes imagechange {
	0% {
		animation-timing-function: ease-in;
		opacity: 1;
		transform: translateX(-12px);
	}

	24% {
		opacity: 1;
	}

	40% {
		animation-timing-function: ease-in;
		transform: translateX(-12px);
	}

	65% {
		animation-timing-function: ease-in;
		transform: translateX(-7px);
	}

	82% {
		animation-timing-function: ease-in;
		transform: translateX(-3x);
	}

	93% {
		animation-timing-function: ease-in;
		transform: translateX(-2px);
	}

	25%,
	55%,
	75%,
	87%,
	98% {
		animation-timing-function: ease-out;
		transform: translateX(0px);
	}

	100% {
		animation-timing-function: ease-out;
		opacity: 1;
		transform: translateX(0px);
	}
}
@keyframes imagechange {
	0% {
		animation-timing-function: ease-in;
		opacity: 0;
		transform: translateY(-250px);
	}

	38% {
		animation-timing-function: ease-out;
		opacity: 1;
		transform: translateY(0);
	}

	55% {
		animation-timing-function: ease-in;
		transform: translateY(-65px);
	}

	72% {
		animation-timing-function: ease-out;
		transform: translateY(0);
	}

	81% {
		animation-timing-function: ease-in;
		transform: translateY(-28px);
	}

	90% {
		animation-timing-function: ease-out;
		transform: translateY(0);
	}

	95% {
		animation-timing-function: ease-in;
		transform: translateY(-8px);
	}

	100% {
		animation-timing-function: ease-out;
		transform: translateY(0);
	}
}

body {
    background-image: linear-gradient(to left, #4285F4, #da5448) ;
    font-family: "roberto", system-ui, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans',
     'Helvetica Neue', sans-serif;
}


.title {
    color:black;

    text-align: center;
}

.main {
  display: flex;
  align-items: center; 
  justify-content: center;
  gap: 15px;            
}

.main-body {
    width: 525px;
    height: 125px;
    background: lightgray;
    position: relative;
    border-radius: 50px;
    box-shadow: 0px 0px 22px -12px #000000;
    text-align: center;
}

.buttons {
    text-align: center;
}

#login,#signup,#print {
    background-color: rgb(80, 80, 80);
    border: none;
    color: white;
    padding: 10px 25px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    border-radius: 10px;
    box-shadow: 0px 0px 22px -12px #000000;
}

#login:hover,#signup:hover,#print:hover {
    box-shadow: 0px 0px 22px -8px #000000;
}

.pic-hdging {
    margin-top: 50px;
    text-align: center;
}

.wrapper {
  display: flex;
  align-items: center; 
  justify-content: center;
  gap: 15px;            
}

.nice-pics {
    width: 525px;
    height: 400px;
    background: lightgray;
    position: relative;
    border-radius: 50px;
    box-shadow: 0px 0px 22px -12px #000000;
    
}

#arrow-left,#arrow-right {
  background: none;     
  border: none;        
  font-size: 30px;
  cursor: pointer;
}

#images {
  position: absolute;
  border-radius: 47px;
  width: 475px;
  box-shadow: 0px 0px 22px -6px #000000;
  animation: imagechange 1s ease-out forwards;
}

.dots {
  text-align: center;
  margin-top: 15px;
  color: none;
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: lightgrey;

  margin: 0 5px;
}

.dot.active {
  background: black;
}

.chat-wrapper {
    width: 525px;
    height: 400px;
    margin: 50px auto;
    background: rgb(228, 228, 228);
    border-radius: 50px;
    box-shadow: 0px 0px 22px -12px #000000;
    display: flex;
    flex-direction: column;   
	align-items: stretch;
    overflow: hidden;
	position: relative;
}

.chat-title{
    width: 100%;
	height: 75px;
    background: rgb(80, 80, 80);
    color: white;
    padding: 15px;
    text-align: center;
    font-size: 15px;
    font-weight: bold;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
	position: relative;
	flex-shrink: 0;
}

#chat-entry {
	width: 94.5%;
	height: 50px;
    background: rgb(80, 80, 80);
    color: white;
    padding: 15px;
    text-align: center;
    font-size: 10px;
    font-weight: bold;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
	margin-top: auto;
	flex-shrink: 0;
}


#chat-start-text{
	width: 94.5%;
	height: 0;
    background: rgb(80, 80, 80);
    color: white;
    padding: 0px;
    text-align: center;
    font-size: 10px;
    font-weight: bold;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
	margin-top: auto;
	flex-shrink: 0;
}

#chat-text{
	display: none;
    border: none;
    outline: none;
    color: white;
    font-size: 10px;
    font-weight: bold;
    width: 300px;
	height: 40px;
	flex: 1;
    text-align: center;
	opacity: 65%;
}

