@import url("https://fonts.googleapis.com/css2?family=PT+Sans:wght@400;700");
  
* {
    margin: 0;
    padding: 0;
    user-select: none;
    box-sizing: border-box;
    height: 100vh;
}

body {
    font-family: 'PT Sans', sans-serif;
    background: linear-gradient(170deg, rgb(15, 26, 39) 0%, rgb(71, 47, 71) 25%, rgb(44, 91, 100) 100%);
    overflow: hidden;
    display: flex;
    flex-flow: column;
    color: white;
}

.message-box {
    margin: auto;
    text-align: center;
    width: 80%;
    font-size: 40px;
    padding: calc(16% - 20px) 20px;
}

.header-sub {
    color: #858585;
}
