* {
  padding: 0;
  margin: 0;
}

body {
  display: flex;
  width: 100%;
  height: 100vh;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 300px;
}

main {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100vh;

}

.window {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 960px;
  height: 100%;
  margin: 1em;
}

.win-tbar {
  display: flex;
  height: 30px;
  padding: 5px;
  align-items: center;
  justify-content: space-between;;
}

.win-tbar h1 h2 h3 h4 h5 h6 {
  margin: 10px;
}

.win-container {
  display: inline-flex;
  position: relative;
  flex-direction: column;
  height: 100%;
  width: 100%;

}

.win-tbar-btn {
  padding-left: 5px;
  padding-right: 5px;
  margin-left: 5px;
}

div .icon {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: left;
  width: fit-content;
  padding-right: 10px;
  padding-left: 10px;
  margin: 2px;

}

.icon img {
  height: 26px;
  width: 26px;
  margin: 5px;
}

.win-header {
  display: flex;
  flex-direction: row;
  padding: 5px;
}

.win-body {
  padding: 1.2em;
  font-size: 1.2em;
  text-align: justify;

  height: 100%;
}

footer {
  margin-top: 1em;
  padding: 1em;
}

/* Extras */

.animation {
  height: 100px;
  overflow: hidden;
  width: 400px;
}

.square {
  position: relative;
  width: 10px;
  height: 10px;
  background-color: rgba(43, 226, 186, 0.233);
  border-radius: 5px;
  border: 3px solid;
  animation: move 5s infinite ease-in-out forwards;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

/* CSS Animations */

@keyframes move {
  from {
    transform: translate(0, 0);
    background-color: #d32525;
  }
  to {
    background-color: #e2a738;
    transform: translate(400px, 0px);
    width: 50px;
    height: 50px;
  }
}

@media screen and (max-width: 650px) {

  .window {
    width: 100%;
    border: 0;
    margin: 5px;

  }

  .win-container {
    width: 100%;
    height: 100%;
  }

  .win-body {
    padding: 15px;
  }

   .win-header {
    min-width: 200px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 5px;
  }

  footer {
    display: none;
  }



}

