@import url(https://fonts.googleapis.com/css?family=Anonymous+Pro);
body,
html {
  width: 100%;
  height: 100%;
  min-height: 900px;
  position: relative;
  margin: 0;
  overflow-x: hidden;
  font-family: 'Anonymous Pro';
}

a {
  text-decoration: none;
}

.header__ {
  width: 100%;
  height: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header__ .left__ {
  -ms-flex-preferred-size: 33%;
      flex-basis: 33%;
  height: 70%;
  padding: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.header__ .left__ .iam {
  padding-left: 10px;
  text-transform: uppercase;
  position: relative;
  top: 25px;
}

.header__ .left__ p {
  text-transform: uppercase;
  font-weight: 900;
  width: 0;
  border-right: 2px solid rgba(0, 0, 0, 0.75);
  font-size: 180%;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  padding-left: 10px;
}

.header__ .center__ {
  -ms-flex-preferred-size: 33%;
      flex-basis: 33%;
  height: 100%;
}

.header__ .right__ {
  -ms-flex-preferred-size: 33%;
      flex-basis: 33%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.header__ .right__ .button {
  padding: 5px 10px;
  background-color: black;
  color: white;
  border-radius: 3px;
  text-align: center;
  text-transform: uppercase;
  width: 12ch;
  margin: 0 auto;
  border: 1px solid black;
  font-size: 24px;
  cursor: pointer;
  margin-bottom: 10px;
}

.header__ .right__ .button:hover {
  background-color: white;
  color: black;
}

.header__ .right__ .message {
  margin-top: 10px;
}

.header__ .right__ .password__box {
  margin-top: 10px;
  padding: 5px;
  border: 1px solid lightgrey;
  border-radius: 3px;
  -webkit-transition: all 1s;
  transition: all 1s;
}

.header__ .right__ .password__box.hidden {
  opacity: 0;
  visibility: hidden;
}

.header__ .right__ .password__box.authorized {
  display: none;
}

.header__ .right__ .password__box input {
  padding: 5px 10px;
  background-color: white;
  color: black;
  border-radius: 3px;
  border: 1px solid lightgrey;
}

.header__ .right__ .password__box input[type="action"] {
  font-size: 16px;
  text-transform: uppercase;
  width: 7ch;
  cursor: pointer;
}

.header__ .right__ .logout {
  cursor: pointer;
  text-decoration: underline;
}

@media (max-width: 776px) {
  .header__ {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.image__container {
  height: 300px;
  position: absolute;
  top: calc(50% - 150px);
  min-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.image__container .image__ {
  width: 100%;
  height: calc( 100vw / 6.4);
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}

.image__container .image__ .image__background {
  width: calc(100vw + 40px);
  height: 340px;
  background-image: url(../images/changepic3-1.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-transition: all 2s;
  transition: all 2s;
  position: relative;
  top: -20px;
  left: -20px;
  visibility: hidden;
}

.image__container .image__::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 100%;
  background-color: black;
  top: 0;
  left: 0;
}

@media (max-width: 992px) {
  .image__container .image__ {
    height: calc(150vw / 6.4);
  }
}

@media (max-width: 450px) {
  .image__container .image__ {
    height: calc(200vw / 6.4);
  }
}

.image__container .text {
  font-size: 25vw;
  color: white;
  position: absolute;
  letter-spacing: -30px;
}

@media (max-width: 992px) {
  .image__container .text {
    font-size: 37vw;
  }
}

@media (max-width: 450px) {
  .image__container .text {
    font-size: 50vw;
  }
}

@media (max-width: 450px) {
  .image__container {
    height: 250px;
    top: calc(50% - 125px);
  }
}

.bottom__ {
  width: 100%;
  height: 300px;
  position: absolute;
  bottom: 20px;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.bottom__ .left__ {
  -ms-flex-preferred-size: 33%;
      flex-basis: 33%;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  padding-left: 50px;
}

.bottom__ .left__ .cover {
  width: 8ch;
  font-size: 32px;
}

.bottom__ .left__ .cover .name {
  text-transform: uppercase;
  font-size: 32px;
  font-weight: 900;
  width: 11ch;
  visibility: hidden;
}

@media (max-width: 992px) {
  .bottom__ .left__ {
    -ms-flex-preferred-size: 20%;
        flex-basis: 20%;
  }
}

.bottom__ .center__ {
  -ms-flex-preferred-size: 33%;
      flex-basis: 33%;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.bottom__ .center__ .cover {
  font-size: 16px;
}

.bottom__ .center__ .cover .description {
  font-size: 16px;
  visibility: hidden;
}

@media (max-width: 776px) {
  .bottom__ .center__ .cover .description {
    text-align: center;
  }
}

@media (max-width: 776px) {
  .bottom__ .center__ .cover {
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 80%;
    margin: 0 auto;
  }
}

@media (max-width: 992px) {
  .bottom__ .center__ {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
}

@media (max-width: 776px) {
  .bottom__ .center__ {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media (max-width: 300px) {
  .bottom__ .center__ {
    margin: 20px 0;
  }
}

.bottom__ .right__ {
  -ms-flex-preferred-size: 33%;
      flex-basis: 33%;
  font-size: 24px;
  font-weight: 900;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  padding: 0 20px;
}

.bottom__ .right__ .cover {
  width: 12ch;
  margin: 0 auto;
}

.bottom__ .right__ .cover .user {
  width: 12ch;
  margin: 0 auto;
  visibility: hidden;
  text-align: right;
}

@media (max-width: 776px) {
  .bottom__ .right__ .cover .user {
    text-align: center;
  }
}

@media (max-width: 992px) {
  .bottom__ .right__ {
    -ms-flex-preferred-size: 30%;
        flex-basis: 30%;
  }
}

@media (max-width: 776px) {
  .bottom__ .right__ {
    margin-left: 0;
  }
}

@media (max-width: 776px) {
  .bottom__ {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (max-width: 450px) {
  .bottom__ {
    height: 350px;
  }
}

.cover {
  position: relative;
  overflow: hidden;
}

.cover .description {
  font-size: 16px;
}

.cover::after {
  content: '';
  width: 0%;
  height: 100%;
  background-color: black;
  position: absolute;
  top: 0;
  left: 0;
}
/*# sourceMappingURL=main.css.map */