/*Document*/
:root {
  --dodgerblue: rgb(30,144,255);
}
html {
  box-sizing: border-box;
  height: 100%;
  margin: 0;
  padding: 0;
}
body {
  background: #f5f5f5;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  font-family: "Benton Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 20px;
  height: 100%;
  margin: 0;
  padding: 0;
}
h1 {
  font-size: 0.8em;
  margin: 0;
  margin-top: 6px;
  padding: 0;
  text-align: center;
}
.bot-icon {
  background: linear-gradient(-45deg,blue 50%,dodgerblue 50%);
  box-sizing: border-box;
  border-radius: 100%;
  display: block;
  height: 40px;
  margin: auto;
  padding: 10px;
  width: 40px;
}

/*Containers*/
header {
  background: white;
  border-bottom: 1px solid #ddd;
  margin: 0;
  padding: 12px;
}
#virtual-assistant{
  align-items: center;
  background: white;
  box-sizing: border-box;
  display: flex;
  height: 100%;
  margin: 0 auto;
  overflow-x: visible;
  width: 900px;
}
@media screen and (max-width: 900px) {
  #virtual-assistant {
    width: 100%;
  }
  footer {
    width: 100%;
    min-width: 0px !important;
  }
}
.win10 {
  font-size: 20px;
  height: 300px;
  margin: 0 auto;
  margin-left: 0px;
  padding: 10px;
  transition: .2s;
  width: 500px;
  
  postition: relative;
  
}
.win10:hover {
   transform: scale(1.5);
  
}
.windows {
  font-size: 20px;
}
footer {
  background: #353535;
  box-sizing: border-box;
  display: flex;
  font-size: 18px;
  margin: 0 auto;
  min-width: 900px;
  padding: 5px;
  text-align: center;
  z-index: 700;
}
footer a {
  color: white;
  margin: 3px;
  padding: 5px 8px;
  text-decoration: none;
}

a {
    text-decoration: none !important;
}

select{
    width: 100px;
    text-overflow: ellipsis;
}