* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    width: 100%;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
    overflow: hidden;
}

main {
    height: 100%;
    width: 100%;
    background-color: black;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}


button#btn-generator {
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    background-color: rgb(249, 52, 52);
    color: rgb(214, 214, 214);
    font-size: 16px;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

button#btn-generator:hover {
    background-color: rgb(255, 0, 0);
}

button#btn-generator:active {
    transform: scale(0.95);
}

h1{
    white-space: nowrap;
}