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

* {
  box-sizing: border-box;
}

body {
  background-color: #ecf0f1;
  font-family: 'Roboto', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
}

h1 {
  text-align: center;
}

.title{
  margin-bottom: 3px;
}

.glyph {
  margin: 0px;
}

#clearStartupIdeasButton{
  background: #FF4136;
}
.startupIdeaDiv{
  background-color: #DDDDDD;
  margin: 10px;
  padding: 10px;
  border-radius: 10px;
  max-width: 400px;
  animation: fadein .3s ease-in;
}

@keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}


.buttonsContainer{
  display: flex;
  flex-direction: row;
  display: flex;
  align-items: center;
  justify-content: left;
  margin: 20px;
}

.button{
  margin-left: 5px;
  margin-right: 5px;
}

button{
  display: inline-block;
  outline: none;
  cursor: pointer;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  border-radius: 8px;
  padding: 14px 24px;
  border: none;
  transition: box-shadow 0.2s ease 0s, -ms-transform 0.1s ease 0s, -webkit-transform 0.1s ease 0s, transform 0.1s ease 0s;
  background: linear-gradient(to right, rgb(52, 113, 235) 0%, rgb(215, 4, 102) 100%);
  color: #fff;
}