MainPage.scss 879 Bytes
#Main{
  margin: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  .Main-header{
    display: flex;
    flex-direction: row;
    height: 30%;
    .title{
      display: flex;
      justify-content: center;
      width: 90%;
      height: 50px;
      .h1{
        font-size: 40px;
        color: white;
        font-weight: bold;
        text-align: center;
        margin-bottom: 60px;
      }
    }
    .None-title{
      display: flex;
      justify-content: right;
      width: 10%;
    }
  }
  .Main-body{
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100vh;
    .contents{
      display: flex;
      justify-content: center;
      align-items: center;
      width: 70%;
    }
    .user{
      display: flex;
      justify-content: center;
      align-items: center;
      width: 30%;
    }
  }
}