* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Yusei Magic', sans-serif;
}

video {
  object-fit: cover;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
}

h1 {
  font-family: 'Londrina Solid', cursive;
  font-weight: 900;
  font-size: 100px;
  line-height: 34px;
  color: #fff;
  text-align: center;
  position: relative;
  margin-top: 100px;
}

h2 {
  font-family: 'Londrina Solid', cursive;
  font-weight: 300;
  font-size: 50px;
  line-height: 34px;
  color: #fff;
  text-align: center;
  margin-bottom: 36px;
  position: relative;
}

p {
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  margin: 0;
}

input {
  box-sizing: border-box;
  border: none;
  border-radius: 4px 0 0 4px;
  background: #e5e9ff;
  color: #0026ff;
  padding: 16px;
  font-size: 16px;
  font-family: 'Londrina Solid', cursive;
  font-weight: 300;
  line-height: 26px;
  flex: 1;
}

main {
  margin: 0 auto;
  position: relative;
  width: 100%;
  max-width: 700px;
  height: 600px;
  border-radius: 30px;
  background: #fff;
  padding-bottom: 20px;
  padding-top: 15px;
  padding-left: 24px;
  padding-right: 10px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.chat {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  overflow: scroll;
  flex-direction: column;
  padding-bottom: 16px;
  padding-right: 15px;
}

.bot-msg {
  display: flex;
  margin: 16px 8px 0 0;
  flex-shrink: 0;
}

.user-msg {
  display: flex;
  justify-content: flex-end;
  margin: 16px 0 0 8px;
  flex-shrink: 0;
}

.profile-pic {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 3px solid #DFBBDB;
}

.outfit-gif {
  width: 300px;
  max-height: 300px;
 }

.bubble.final {
  max-width: 60%;
}

.bubble {
  background: #DFBBDB;
  font-weight: 600;
  font-size: 16px;
  line-height: 26px;
  padding: 16px 24px;
  color: #3F1D20;
  max-width: 40%;
}

.bot-bubble {
  border-radius: 0px 26px 26px 26px;
  margin-left: 8px;
}

.user-bubble {
  border-radius: 26px 0 26px 26px;
  margin-right: 8px;
}

.input-wrapper {
  display: flex;
  justify-content: center;
}

.input-wrapper form {
  width: 100%;
  display: flex;
}

.emoji-container {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

.emoji {
  font-size: 26px;
}

.slider {
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  width: 350px;
  height: 2px;
  margin-top: 7px;
  background: #F264B9;
  padding: 0;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none; 
  appearance: none;
  width: 15px; 
  height: 15px;
  border-radius: 50%;
  background: #F264B9; 
  cursor: pointer; 
}

.slider::-moz-range-thumb {
  width: 15px; 
  height: 15px; 
  background: #F264B9; 
  cursor: pointer; 
}

.dropdown {
  -webkit-appearance: none; 
  appearance: none;
  outline: none;
  background: #F264B9; 
  border: none;
  color: white;
  border-radius: 4px;
  padding: 16px 40px;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  line-height: inherit;
  font-size: 16px;
}

button {
  background-color: #F264B9;
  color: white;
  border: none;
  border-radius: 4px;
  padding: 16px 40px;
  margin-right: 4px;
  font-size: 20px;
  line-height: 26px;
  font-family: 'Londrina Solid', cursive;
  font-weight: 300;
  cursor: pointer;
  transition: all 0.3s ease;
}

button:hover {
  opacity: 0.9;
  transition: all 0.2s ease;
}


