.header{
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #89acb98e;
  .marquee-vessel{
    background-color: #fff;
    border-radius: 15px 15px 0 0;
  }
  .header-gif{
    flex-direction: row;
  }
  .switch-wrapper{
    float: right;
  }
}
.main-vessel{
  display: flex;
  height: 100%;
  overflow: hidden;
}
main{
  background-color: #fff;
  order: 2;
  width: 60%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  overflow: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  #welcome{
    min-width: 100%;
    margin: 2px 5px 10px 5px;
    p{
      margin: 5px 0;
    }
  }
  .box{
    width: calc(50% - 28px);
  }
}
aside{
  max-width: 20%;
  overflow: scroll;
  .box{
    max-height: 300px;
  }
}
.left{
  order: 1;
}
.right{
  order: 3;
}
#statuscafe-username{
  a:hover{
    opacity: 0.75;
    cursor: default;
  }
  a:visited{
    color: #89ACB9;
  }
  color: #89ACB9;
}
.header-gif{
  width: 100%;
  /* border-radius: 0 0 15px 15px; */
  img{
    display: block;
    margin: 0 auto;
  }
}