.container {
  width: 1280px;
  margin: auto;
  padding: 5px;
  background-color: rgba(20, 173, 220, 0.174);
}

#poster1 {
  opacity: 0;
}
#toptitle {
  font-size: 25px;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  color: rgb(0, 107, 153);
  text-align: center;
}
.toolbar {
  text-align: center;
  border: 3px solid rgb(0, 107, 153);
  padding: 4px;
  border-radius: 10px;
}
#options {
  height: 90px;
  border: 3px solid rgb(0, 107, 153);
  line-height: 75px;
  display: none;
}
#close {
  background-color: crimson;
  height: 55px;
  width: 55px;
  font-size: 30px;
  border-radius: 75px;
  border: 0;
  box-shadow: 0px 0px 5px 5px;
}
#close:hover {
  background-color: white;
}
label {
  font-size: 18px;
}
button {
  width: 150px;
  font-size: 14px;
  background-color: rgb(0, 107, 153);
  color: white;
  transition: 0.2s all;
  margin: 5px 0;
}
button:hover {
  background-color: white;
  color: rgb(0, 107, 153);
}
#poster {
  border: 3px black solid;
  width: 1188px;
  height: 840px;
  margin: auto;
  transition: 0.2s all;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-print-color-adjust: exact;
}
#print {
  background-color: crimson;
  color: whitesmoke;
  border-radius: 10px;
  transition: 0.2s all;
}
#print:hover {
  background-color: tomato;
}

#select {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: start;
  text-transform: capitalize;
  font-size: 25px;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  width: fit-content;
  color: #000000;
}

#select > * {
  margin: 0px 15px;
}

@media print {
  @page {
    size: A4;
    margin: 0;
    border: none;
  }

  body {
    visibility: hidden;
  }

  #poster {
    visibility: visible;
    position: absolute;
    top: 0;
    left: 0;
    height: 1189px;
    width: 1663px;
    size: a4;
    border-style: dashed;
  }
}

#blue {
  background-color: blue;
  width: 50px;
  height: 50px;
}
