html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

html {
  margin-bottom: 25px;
  background-color: #1a2035;
  font-family: Arial, serif;
  color: white;
}

h1{
  font-size: 3em;
  margin : 15px;
  color : white;
}
.title {
  display: flex;
  justify-content: center;
  padding-bottom: 15px;
}
.messages {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.form_container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.form {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 90%;
  background-color: #202940;
  border-radius: 10px;
  padding: 16px;
  box-shadow:  2px 2px 0px rgba(0, 0, 0, 0.14),0px 3px 1px -2px rgba(0, 0, 0, 0.2),0px 1px 5px 0px rgba(0, 0, 0, 0.12)
}
.actions {
  display: flex;
  width: 100%;
  flex-direction: row;
  gap : 8px;
  justify-content: center;
}
.message {
  max-width: 90%;
  background-color: #202940;
  border-radius: 10px;
  padding: 16px;
  box-shadow:  2px 2px 0px rgba(0, 0, 0, 0.14),0px 3px 1px -2px rgba(0, 0, 0, 0.2),0px 1px 5px 0px rgba(0, 0, 0, 0.12)
}
h4 {
  color : white;
  margin-bottom: 8px;
}
p {
  color: #8B92A9;
}
.new_message {
  margin-right: 15px;
  margin-bottom: 25px;
  position: fixed;
  background-color: #17a2b8;
  padding: 15px;
  border-radius: 25px;
  color: white;
  bottom: 0;
  right: 0;
}

.new_message:hover {
  animation: grow 0.3s forwards;
}

@keyframes grow {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

.new_message:active {
  animation: click 0.2s;
}

@keyframes click {
  0% {
    transform: scale(1);
    background-color: #17a2b8;
  }
  50% {
    transform: scale(0.95);
    background-color: #0f808d;
  }
  100% {
    transform: scale(1);
    background-color: #17a2b8;
  }
}

a:link { text-decoration: none; }
a:visited { text-decoration: none; }
a:hover { text-decoration: none; }
a:active { text-decoration: none; }