@import "shared.css";

* {
  
    box-sizing: border-box;
  }
    
  body {
        background-color: #000;
  }

  .dialog {

    border-radius: 10px;
    padding: 30px;
    width: 500px;
    margin: 30px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

  @media screen and (max-width: 500px) {
    .center {
        width: 100%;
        left: 0px;
    }
    .dialog {
        width: 100%;
        left: 0px;
    }
    
  }

h1 {
    font-size: 2em;
    color: #f05a28;
    margin-bottom: 20px;
}

h2 {
    font-size: 1.4em;
    color: #f05a28;
    margin-bottom: 20px;
}
body {
    font-family: Arial, sans-serif;
    color: #e6e6e6;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;

}
div {
    text-align: left;

}

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

    justify-content: flex-start;
    
}
}
