* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto Mono', monospace;
}


body {
    background: #2B2730;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}


.PrintMessageBox {
    width: 50%;
    padding: 20px 15px;
    border: 1px solid #9575DE;
    border-radius: 8px;
    background-color: #6554AF;
}


input, button {
    width: 100%;
    height: 40px;
    padding: 5px;
    border-radius: 8px;
    margin-bottom: 40px;
}


input {
    border: 0px solid #fff;
    font-size: 15px;
    font-weight: 500;
}


button {
    border: 1px solid #fff;
    background-color: #E966A0;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.5s;
}

button:hover {
    scale: 1.03;
    opacity: 0.9;
    background-color: #d64285;
}


p {
    color: #fff;
    font-size: 14px;
    margin: 10px 0 0 0;
}